/* ==========================================================================
   KFZ-Meisterbetrieb Selimovic – Stylesheet
   Farbschema: LIQUI MOLY (Blau / Rot / Weiß)
   ========================================================================== */

:root {
    /* Markenfarben */
    --color-blue: #003D7E;
    --color-blue-deep: #002952;
    --color-blue-light: #1B5BA8;
    --color-red: #DC1E2C;
    --color-red-dark: #B0151F;
    --color-white: #FFFFFF;

    /* Neutrals */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F6FA;
    --color-bg-dark: #0E1A2C;
    --color-text: #1A2233;
    --color-text-muted: #4A5568;
    --color-border: #E2E8F0;

    /* Typografie */
    --font-display: 'Barlow Condensed', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius: 6px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(0, 61, 126, 0.08);
    --shadow-md: 0 8px 28px rgba(0, 61, 126, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 61, 126, 0.18);
    --transition: 200ms ease;
}

/* Reset & Basics
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red-dark); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
    color: var(--color-blue-deep);
}
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--primary {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}
.btn--primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
    background: var(--color-white);
    color: var(--color-blue-deep);
    border-color: var(--color-white);
}
.section--alt .btn--ghost,
.reviews .btn--ghost {
    color: var(--color-blue-deep);
    border-color: var(--color-blue);
}
.section--alt .btn--ghost:hover,
.reviews .btn--ghost:hover {
    background: var(--color-blue);
    color: var(--color-white);
}
.btn--phone {
    background: var(--color-red);
    color: var(--color-white);
    padding: 10px 18px;
    font-size: 14px;
}
.btn--phone:hover { background: var(--color-red-dark); color: var(--color-white); }

/* Header
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    color: var(--color-blue-deep);
    font-family: var(--font-display);
    font-weight: 800;
    text-decoration: none;
}
.brand__name { font-size: 24px; letter-spacing: -0.02em; }
.footer__brand-name { color: var(--color-white); }

.nav {
    display: flex;
    gap: 28px;
}
.nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--color-red); }
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--color-red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.nav a:hover::after { transform: scaleX(1); }

/* Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}
.hero > .container { width: 100%; }
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0, 29, 61, 0.97) 0%,
        rgba(0, 41, 82, 0.88) 30%,
        rgba(0, 41, 82, 0.45) 60%,
        transparent 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    max-width: 740px;
}
.hero__eyebrow {
    display: inline-block;
    background: var(--color-red);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero__title {
    font-size: clamp(44px, 7vw, 88px);
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero__title--accent { color: #FFD000; }
.hero__lead {
    font-size: clamp(17px, 1.6vw, 21px);
    max-width: 620px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.hero__badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 28px;
}
.hero__badges li {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}
.hero__badges strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-white);
    line-height: 1;
}

/* USP
   -------------------------------------------------------------------------- */
.usp { padding: 70px 0; background: var(--color-white); }
.usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.usp__item { text-align: left; }
.usp__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.usp__icon svg { width: 26px; height: 26px; }
.usp__item h3 { font-size: 22px; margin-bottom: 8px; }
.usp__item p { color: var(--color-text-muted); margin: 0; font-size: 15px; }

/* Sections
   -------------------------------------------------------------------------- */
.section { padding: 100px 0; }
.section--alt { background: var(--color-bg-alt); }

.eyebrow {
    display: inline-block;
    color: var(--color-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow--light { color: #FFD000; }

.section__title {
    font-size: clamp(34px, 4.5vw, 54px);
    margin-bottom: 18px;
    max-width: 740px;
}
.section__title--light { color: var(--color-white); }
.section__intro {
    font-size: 19px;
    color: var(--color-text-muted);
    max-width: 680px;
    margin-bottom: 60px;
}

/* Services
   -------------------------------------------------------------------------- */
.services {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.service:hover { box-shadow: var(--shadow-md); }
.service--reverse .service__media { order: 2; }
.service__media {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}
.service__media--samir { background-position: center 30%; }
.service__body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service__tag {
    display: inline-block;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    align-self: flex-start;
}
.service__body h3 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 16px;
}
.service__body p {
    color: var(--color-text-muted);
    font-size: 16px;
}
.service__list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
}
.service__list li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    font-size: 15px;
}
.service__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 16px; height: 16px;
    background: var(--color-red);
    clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 20%, 80% 0, 40% 60%);
}
.service__list--cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 4px;
}
.service__highlight {
    background: rgba(220, 30, 44, 0.07);
    border-left: 3px solid var(--color-red);
    padding: 14px 18px;
    border-radius: 4px;
    color: var(--color-text);
    font-weight: 500;
    margin-top: 16px;
}

/* Trust
   -------------------------------------------------------------------------- */
.trust {
    background: var(--color-blue-deep);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(220, 30, 44, 0.18), transparent 60%);
}
.trust__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.trust__text p {
    color: rgba(255,255,255,0.88);
    font-size: 17px;
}
.pledge {
    margin: 30px 0 0;
    padding: 24px 28px;
    border-left: 4px solid var(--color-red);
    background: rgba(255,255,255,0.05);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    border-radius: 0 6px 6px 0;
}
.trust__stats {
    display: grid;
    gap: 16px;
}
.stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: left;
    transition: all var(--transition);
}
.stat:hover {
    background: rgba(220, 30, 44, 0.15);
    border-color: var(--color-red);
    transform: translateX(4px);
}
.stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}
.stat__label {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* Reviews
   -------------------------------------------------------------------------- */
.reviews { background: var(--color-bg-alt); }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 50px;
}
.review {
    background: var(--color-white);
    padding: 28px 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-red);
    display: flex;
    flex-direction: column;
}
.review__stars {
    color: #FFB800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.review p {
    color: var(--color-text);
    font-size: 15.5px;
    line-height: 1.6;
    flex-grow: 1;
}
.review footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-muted);
}
.review footer strong { color: var(--color-blue-deep); }
.reviews__cta { text-align: center; margin-top: 48px; }

/* CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
    background: linear-gradient(95deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
    color: var(--color-white);
    padding: 60px 0;
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-band h2 {
    color: var(--color-white);
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 6px;
}
.cta-band p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 17px;
}
.cta-band .btn--primary { font-size: 22px; padding: 18px 36px; }

/* Contact
   -------------------------------------------------------------------------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
}
.contact__card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--color-red);
    height: 100%;
}
.contact__card h3 {
    font-size: 28px;
    margin-bottom: 4px;
}
.contact__owner {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.contact__list {
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px 18px;
}
.contact__list dt {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 2px;
}
.contact__list dd {
    margin: 0;
    color: var(--color-text);
    font-size: 16px;
}
.contact__list a { color: var(--color-blue-deep); font-weight: 600; }
.contact__list a:hover { color: var(--color-red); }
.contact__note { color: var(--color-text-muted); font-size: 13px; }
.contact__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__buttons .btn--ghost { color: var(--color-blue-deep); border-color: var(--color-blue); }
.contact__buttons .btn--ghost:hover { background: var(--color-blue); color: var(--color-white); }

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 460px;
    box-shadow: var(--shadow-md);
}
.contact__map iframe {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}
.map-link__btn {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--color-white);
    color: var(--color-blue-deep);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.map-link__btn:hover { background: var(--color-red); color: var(--color-white); }

.contact__disclaimer {
    margin-top: 50px;
    padding: 20px 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.75);
    padding: 50px 0 30px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer .brand { margin-bottom: 14px; }
.footer__brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 14px 0 0;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__nav a {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
}
.footer__nav a:hover { color: var(--color-red); }
.footer__meta {
    text-align: right;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer__credit a { color: rgba(255,255,255,0.85); }
.footer__credit a:hover { color: var(--color-red); }

/* Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .nav { display: none; }
    .hero { min-height: auto; }
    .hero__content { padding: 70px 24px; }
    .service,
    .trust__inner,
    .contact__grid,
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service--reverse .service__media { order: 0; }
    .service__body { padding: 32px 28px; }
    .service__media { min-height: 240px; }
    .section { padding: 70px 0; }
    .trust__inner { gap: 40px; }
    .contact__grid { gap: 24px; }
    .contact__card { padding: 28px; }
    .contact__list { grid-template-columns: 1fr; gap: 4px 0; }
    .contact__list dt { padding-top: 14px; }
    .contact__list dt:first-child { padding-top: 0; }
    .footer__inner { gap: 28px; }
    .footer__meta { text-align: left; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .header__inner { padding: 12px 18px; }
    .container { padding: 0 18px; }
    .btn--phone span { display: none; }
    .hero__badges { gap: 20px; }
    .hero__badges li { flex: 1; min-width: 90px; }
    .hero__ctas .btn { flex: 1; }
}
