/* ================================================================
   NIGHTRIDE SHUTTLE – theme.css
   Schwarz + Weiß + Akzentrot (steuerbar via --accent)
   Präfix aller Klassen: nr-
   CSS Custom Properties werden via app.blade.php gesetzt.
================================================================ */

/* ── Fallback Custom Properties ── */
:root {
    --accent:        #C8102E;
    --accent-hover:  #E3112E;
    --font-body:     'Barlow', sans-serif;
    --font-head:     'Barlow Condensed', sans-serif;

    /* Interne Werte (nicht aus DB) */
    --black:         #0A0A0A;
    --black-mid:     #111111;
    --black-soft:    #1A1A1A;
    --black-card:    #1F1F1F;
    --black-border:  #2A2A2A;
    --text:          #FFFFFF;
    --text-muted:    #9A9A9A;
    --text-dim:      #5A5A5A;
    --border:        rgba(255,255,255,0.08);
}

/* ── Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.theme-nightride {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
.theme-nightride img { display: block; max-width: 100%; }
.theme-nightride a { text-decoration: none; color: inherit; }


/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.nr-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nr-header--scrolled {
    border-color: var(--black-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nr-header__inner {
    max-width: 1320px; margin: 0 auto; padding: 0 2rem;
    height: 72px; display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

/* Logo */
.nr-header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nr-header__logo-img { height: 44px; width: auto; object-fit: contain; }
.nr-header__logo-icon {
    width: 44px; height: 44px; border-radius: 4px;
    background: var(--accent); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.nr-header__logo-icon svg { width: 22px; height: 22px; color: #fff; }
.nr-header__logo-texts { display: flex; flex-direction: column; }
.nr-header__logo-name {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
    color: #fff; line-height: 1.1; letter-spacing: 0.04em;
}
.nr-header__logo-sub {
    font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.16em;
    text-transform: uppercase; margin-top: 2px;
}

/* Nav */
.nr-header__nav { display: flex; align-items: center; gap: 0.2rem; }
.nr-header__nav a {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 0.5rem 0.9rem; border-radius: 3px;
    color: var(--text-muted); transition: color 0.2s, background 0.2s;
}
.nr-header__nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nr-header__right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.nr-lang-group {
    display: flex; gap: 2px; padding: 3px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    border-radius: 3px;
}
.nr-lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 9px; border-radius: 2px; color: var(--text-muted); transition: all 0.2s;
}
.nr-lang-btn:hover, .nr-lang-btn.active { background: rgba(255,255,255,0.12); color: #fff; }
.nr-header__cta {
    background: var(--accent); color: #fff;
    padding: 0.6rem 1.4rem; border-radius: 3px;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.nr-header__cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nr-header__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nr-header__toggle span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px; transition: all 0.3s;
}
.nr-header__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nr-header__toggle--active span:nth-child(2) { opacity: 0; }
.nr-header__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.nr-hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    overflow: hidden;
}

/* Slides */
.nr-hero__slides { position: absolute; inset: 0; z-index: 0; }
.nr-hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.nr-hero__slide--active { opacity: 1; }

/* Overlay */
.nr-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.75) 70%,
        rgba(0,0,0,0.96) 100%
    );
}

/* Dots */
.nr-hero__dots {
    position: absolute; bottom: 195px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.nr-hero__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); cursor: pointer;
    border: none; transition: all 0.3s; padding: 0;
}
.nr-hero__dot--active { background: #fff; width: 24px; border-radius: 4px; }

/* Content */
.nr-hero__content {
    position: relative; z-index: 2;
    text-align: center; padding: 140px 2rem 50px;
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
}
.nr-hero__eyebrow {
    font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.nr-hero__eyebrow::before, .nr-hero__eyebrow::after {
    content: ''; width: 36px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.nr-hero__title {
    font-family: var(--font-head); font-size: clamp(3rem,8vw,6.5rem);
    font-weight: 800; line-height: 0.95; letter-spacing: -0.01em;
    text-transform: uppercase; margin-bottom: 1rem;
    animation: nrFadeUp 1s ease 0.1s both;
}
.nr-hero__title span { color: var(--accent); display: block; }
.nr-hero__desc {
    font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em; max-width: 600px;
    animation: nrFadeUp 1s ease 0.3s both;
}
@keyframes nrFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════
   BOOKING BAR
═══════════════════════════════════════════════════════ */
.nr-booking-bar {
    position: relative; z-index: 10;
    background: rgba(13,13,13,0.98);
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--black-border);
}
.nr-booking-bar__inner {
    max-width: 1320px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; gap: 2rem; min-height: 72px;
}
.nr-booking-bar__label {
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0; white-space: nowrap;
}
.nr-booking-bar__label svg { width: 16px; height: 16px; flex-shrink: 0; }
.nr-booking-bar__form { flex: 1; min-width: 0; }

/* ─────────────────────────────────────────────────────
   nr-input / nr-btn
   Direkt als inputClass / buttonClass an die Komponente.
   Werden auf <input>, <select>, <button> angewendet.
────────────────────────────────────────────────────── */
.nr-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--black-border);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 500;
    color: #fff; padding: 0.5rem 0; width: 100%;
    transition: border-color 0.25s;
    -webkit-appearance: none; appearance: none;
    color-scheme: dark;
}
.nr-input::placeholder { color: var(--text-dim); }
.nr-input:focus { border-color: var(--accent); }
select.nr-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.4rem center;
    padding-right: 1.4rem; cursor: pointer; background-color: transparent;
}
select.nr-input option { background: var(--black-soft); color: #fff; }

.nr-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--accent); color: #fff; border: none; cursor: pointer;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0 2rem; height: 46px; border-radius: 3px;
    transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.nr-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nr-btn:active { transform: translateY(0); }
.nr-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }


/* ═══════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════ */
.nr-tag {
    font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
    display: block; margin-bottom: 0.8rem;
}
.nr-section-title {
    font-family: var(--font-head); font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 700; text-transform: uppercase; line-height: 1.05;
    letter-spacing: 0.01em;
}
.nr-section-title span { color: var(--accent); }
.nr-section-header { margin-bottom: 3rem; }
.nr-section-header--center { text-align: center; }
.nr-section-header--center .nr-section-title { margin-bottom: 0.6rem; }

/* Buttons */
.nr-btn-solid {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 0.8rem 1.8rem; border-radius: 3px;
    font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s;
}
.nr-btn-solid:hover { background: var(--accent-hover); }
.nr-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--accent); color: var(--accent);
    padding: 0.8rem 1.8rem; border-radius: 3px;
    font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.25s;
}
.nr-btn-outline:hover { background: var(--accent); color: #fff; }

/* Scroll Reveal */
.nr-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.nr-revealed { opacity: 1 !important; transform: translateY(0) !important; }


/* ═══════════════════════════════════════════════════════
   IMAGE CARDS
═══════════════════════════════════════════════════════ */
.nr-cards { background: var(--black); }
.nr-cards__grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
}
.nr-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3;
}
.nr-card__img {
    width: 100%; height: 100%; overflow: hidden;
}
.nr-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.nr-card:hover .nr-card__img img { transform: scale(1.06); }
.nr-card__overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem; transition: background 0.3s;
}
.nr-card:hover .nr-card__overlay {
    background: linear-gradient(to top, rgba(200,16,46,0.72) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.nr-card__tag {
    font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 0.4rem;
}
.nr-card__title {
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
    line-height: 1.15; text-transform: uppercase; letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════
   ÜBER UNS
═══════════════════════════════════════════════════════ */
.nr-about {
    padding: 7rem 2rem;
    background: var(--black-mid);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.nr-about__inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.nr-about__text .nr-section-title { margin-bottom: 1.5rem; }
.nr-about__text p {
    font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.5rem;
}
.nr-about__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Bild-Grid */
.nr-about__imgs {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; gap: 6px;
}
.nr-about__img-main {
    grid-column: 1 / -1;
    overflow: hidden; border-radius: 3px;
    aspect-ratio: 16/7;
}
.nr-about__img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nr-about__img-main:hover img { transform: scale(1.03); }
.nr-about__img-sm { overflow: hidden; border-radius: 3px; aspect-ratio: 1; }
.nr-about__img-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nr-about__img-sm:hover img { transform: scale(1.04); }


/* ═══════════════════════════════════════════════════════
   WARUM WIR
═══════════════════════════════════════════════════════ */
.nr-why { padding: 7rem 2rem; background: var(--black); }
.nr-why__inner { max-width: 1320px; margin: 0 auto; }
.nr-why__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--black-border);
}
.nr-why__item {
    padding: 2.5rem 3rem; border-bottom: 1px solid var(--black-border);
    border-right: 1px solid var(--black-border);
    display: flex; gap: 2rem; align-items: flex-start;
    transition: background 0.25s;
}
.nr-why__item:hover { background: var(--black-soft); }
.nr-why__item:nth-child(even) { border-right: none; }
.nr-why__item:nth-last-child(-n+2) { border-bottom: none; }
.nr-why__num {
    font-family: var(--font-head); font-size: 3rem; font-weight: 800;
    color: var(--accent); line-height: 1; flex-shrink: 0; opacity: 0.55;
    transition: opacity 0.25s;
}
.nr-why__item:hover .nr-why__num { opacity: 1; }
.nr-why__title {
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem;
}
.nr-why__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }


/* ═══════════════════════════════════════════════════════
   B2B BANNER
═══════════════════════════════════════════════════════ */
.nr-b2b {
    position: relative; overflow: hidden;
    min-height: 340px; display: flex; align-items: center;
}
.nr-b2b__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s;
}
.nr-b2b:hover .nr-b2b__bg { transform: scale(1.02); }
.nr-b2b__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.35) 100%);
}
.nr-b2b__content {
    position: relative; z-index: 2;
    max-width: 600px; padding: 3rem 2rem; margin: 0;
    padding-left: max(2rem, calc((100vw - 1320px)/2 + 2rem));
}
.nr-b2b__content h2 {
    font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
    text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem;
}
.nr-b2b__content p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   VORTEILE 6er GRID
═══════════════════════════════════════════════════════ */
.nr-benefits { padding: 7rem 2rem; background: var(--black-mid); }
.nr-benefits__inner { max-width: 1320px; margin: 0 auto; }
.nr-benefits__grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem;
}
.nr-benefit {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 4px; padding: 2rem 1.8rem; transition: all 0.3s;
}
.nr-benefit:hover { border-color: var(--accent); transform: translateY(-3px); }
.nr-benefit__icon {
    width: 48px; height: 48px; border-radius: 4px;
    background: rgba(200,16,46,0.1); border: 1px solid rgba(200,16,46,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem; transition: all 0.3s;
}
.nr-benefit:hover .nr-benefit__icon { background: var(--accent); border-color: var(--accent); }
.nr-benefit__icon svg { width: 22px; height: 22px; color: var(--accent); transition: color 0.3s; }
.nr-benefit:hover .nr-benefit__icon svg { color: #fff; }
.nr-benefit__title {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem;
}
.nr-benefit__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }


/* ═══════════════════════════════════════════════════════
   HIGHLIGHT SPLIT
═══════════════════════════════════════════════════════ */
.nr-highlight { display: grid; grid-template-columns: 1fr 1fr; }
.nr-highlight__img { overflow: hidden; }
.nr-highlight__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nr-highlight:hover .nr-highlight__img img { transform: scale(1.03); }
.nr-highlight__text {
    background: var(--black-soft); padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
.nr-highlight__text .nr-section-title { margin-bottom: 1.5rem; }
.nr-highlight__text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem; }
.nr-highlight__btns { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════ */
.nr-cta-strip {
    background: var(--accent); padding: 4rem 2rem; text-align: center;
}
.nr-cta-strip h2 {
    font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
    text-transform: uppercase; margin-bottom: 0.6rem;
}
.nr-cta-strip p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.nr-cta-strip__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.nr-cta-strip__btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--accent);
    padding: 0.85rem 2rem; border-radius: 3px;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.25s;
}
.nr-cta-strip__btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.nr-cta-strip__btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
    padding: 0.85rem 2rem; border-radius: 3px;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.25s;
}
.nr-cta-strip__btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.nr-cta-strip__btn-white svg,
.nr-cta-strip__btn-outline svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.nr-faq { padding: 7rem 2rem; background: var(--black); }
.nr-faq__inner { max-width: 860px; margin: 0 auto; }
.nr-faq__list { margin-top: 2.5rem; }
.nr-faq__item { border-bottom: 1px solid var(--black-border); }
.nr-faq__q {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 1.4rem 0; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem; text-align: left;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    color: #fff; transition: color 0.2s;
}
.nr-faq__q:hover { color: var(--accent); }
.nr-faq__icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    border: 1px solid var(--black-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); transition: all 0.3s;
}
.nr-faq__item--open .nr-faq__icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.nr-faq__icon svg { width: 14px; height: 14px; }
.nr-faq__a {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
}
.nr-faq__item--open .nr-faq__a { max-height: 200px; padding-bottom: 1.4rem; }


/* ═══════════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════════ */
.nr-contact {
    padding: 7rem 2rem; background: var(--black-mid);
    border-top: 1px solid var(--black-border);
}
.nr-contact__inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start;
}
.nr-contact__info .nr-section-title { margin-bottom: 2rem; font-size: 2rem; }
.nr-contact__detail {
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.nr-contact__detail-icon {
    width: 44px; height: 44px; border-radius: 4px; flex-shrink: 0;
    background: rgba(200,16,46,0.1); border: 1px solid rgba(200,16,46,0.2);
    display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.nr-contact__detail-icon svg { width: 18px; height: 18px; }
.nr-contact__detail-label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 600; margin-bottom: 3px;
}
.nr-contact__detail-val { font-size: 0.95rem; color: #fff; }
.nr-contact__detail-val a { transition: color 0.2s; }
.nr-contact__detail-val a:hover { color: var(--accent); }

/* Kontaktformular */
.nr-contact__form { display: flex; flex-direction: column; gap: 1rem; }
.nr-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nr-cf-group { display: flex; flex-direction: column; gap: 6px; }
.nr-cf-group label {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 600;
}
.nr-cf-group input,
.nr-cf-group textarea {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 3px; padding: 0.85rem 1rem;
    font-family: var(--font-body); font-size: 0.9rem; color: #fff;
    outline: none; transition: border-color 0.25s; resize: none;
}
.nr-cf-group input::placeholder,
.nr-cf-group textarea::placeholder { color: var(--text-dim); }
.nr-cf-group input:focus,
.nr-cf-group textarea:focus { border-color: var(--accent); }
.nr-cf-submit {
    background: var(--accent); color: #fff; border: none; cursor: pointer;
    padding: 0.9rem 2rem; border-radius: 3px; width: 100%;
    font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s;
}
.nr-cf-submit:hover { background: var(--accent-hover); }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.nr-footer {
    background: var(--black); border-top: 1px solid var(--black-border);
    padding: 4rem 2rem 0; font-family: var(--font-body);
}
.nr-footer__main {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid var(--black-border);
}
.nr-footer__logo-img { height: 40px; width: auto; object-fit: contain; margin-bottom: 1.2rem; }
.nr-footer__logo-fallback {
    display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem;
}
.nr-footer__logo-icon {
    width: 36px; height: 36px; border-radius: 3px;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nr-footer__logo-icon svg { width: 18px; height: 18px; color: #fff; }
.nr-footer__logo-name {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
    color: #fff; letter-spacing: 0.04em;
}
.nr-footer__about { font-size: 0.85rem; color: var(--text-dim); line-height: 1.8; max-width: 260px; margin-bottom: 1.5rem; }
.nr-footer__social { display: flex; gap: 10px; }
.nr-social-btn {
    width: 36px; height: 36px; border-radius: 3px;
    background: var(--black-card); border: 1px solid var(--black-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); transition: all 0.2s;
}
.nr-social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nr-social-btn svg { width: 14px; height: 14px; }

.nr-footer__col h4 {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 1.3rem; display: block;
}
.nr-footer__col ul { list-style: none; }
.nr-footer__col ul li + li { margin-top: 0.6rem; }
.nr-footer__col ul li a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.nr-footer__col ul li a:hover { color: #fff; }

.nr-footer__payments {
    max-width: 1320px; margin: 0 auto;
    padding: 1.5rem 0; border-bottom: 1px solid var(--black-border);
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.nr-footer__pay-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.nr-footer__pay-icon {
    height: 26px; padding: 0 10px; background: var(--black-card);
    border: 1px solid var(--black-border); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.05em;
}

.nr-footer__cities {
    max-width: 1320px; margin: 0 auto;
    padding: 1.5rem 0; border-bottom: 1px solid var(--black-border);
}
.nr-footer__cities h5 {
    font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 0.8rem;
}
.nr-footer__cities-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.nr-footer__cities-grid a {
    font-size: 0.78rem; color: var(--text-dim); transition: color 0.2s;
    padding: 3px 10px; background: var(--black-card); border-radius: 2px;
    border: 1px solid var(--black-border);
}
.nr-footer__cities-grid a:hover { color: #fff; border-color: var(--accent); }

.nr-footer__bottom {
    max-width: 1320px; margin: 0 auto;
    padding: 1.5rem 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.nr-footer__copy { font-size: 0.78rem; color: var(--text-dim); }
.nr-footer__legal { display: flex; gap: 1.5rem; }
.nr-footer__legal a { font-size: 0.78rem; color: var(--text-dim); transition: color 0.2s; }
.nr-footer__legal a:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════════════════ */
.nr-floating {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
    display: flex; flex-direction: column; gap: 10px;
}
.nr-float {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5); transition: transform 0.3s;
}
.nr-float:hover { transform: scale(1.1); }
.nr-float--phone { background: var(--accent); color: #fff; }
.nr-float--wa    { background: #25D366; color: #fff; }
.nr-float svg { width: 22px; height: 22px; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .nr-cards__grid        { grid-template-columns: 1fr 1fr; }
    .nr-why__grid          { grid-template-columns: 1fr; }
    .nr-why__item          { border-right: none; }
    .nr-why__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--black-border); }
    .nr-why__item:last-child { border-bottom: none; }
    .nr-benefits__grid     { grid-template-columns: 1fr 1fr; }
    .nr-footer__main       { grid-template-columns: 1fr 1fr; }
    .nr-about__inner       { grid-template-columns: 1fr; gap: 3rem; }
    .nr-about__imgs        { order: -1; }
    .nr-contact__inner     { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .nr-header__inner  { padding: 0 1.2rem; height: 65px; }
    .nr-header__nav {
        display: none; position: absolute; top: 65px; left: 0; right: 0;
        flex-direction: column; background: rgba(10,10,10,0.98);
        border-bottom: 1px solid var(--black-border); padding: 1rem;
    }
    .nr-header__nav--open { display: flex; }
    .nr-header__nav a { width: 100%; font-size: 0.95rem; padding: 0.7rem 1rem; }
    .nr-header__cta    { display: none; }
    .nr-header__toggle { display: flex; }
    .nr-booking-bar__inner { flex-direction: column; padding: 1.2rem; gap: 0.5rem; min-height: auto; }
    .nr-booking-bar__label { margin-bottom: 0.5rem; }
    .nr-cards__grid    { grid-template-columns: 1fr; }
    .nr-about          { padding: 4rem 1.2rem; }
    .nr-why            { padding: 4rem 1.2rem; }
    .nr-benefits       { padding: 4rem 1.2rem; }
    .nr-benefits__grid { grid-template-columns: 1fr; }
    .nr-highlight      { grid-template-columns: 1fr; }
    .nr-highlight__text { padding: 3rem 1.5rem; }
    .nr-faq            { padding: 4rem 1.2rem; }
    .nr-contact        { padding: 4rem 1.2rem; }
    .nr-nr-cf-row      { grid-template-columns: 1fr; }
    .nr-footer__main   { grid-template-columns: 1fr; }
    .nr-footer__bottom { flex-direction: column; text-align: center; }
    .nr-hero__title    { font-size: 3rem; }
    .nr-floating       { bottom: 1.2rem; right: 1.2rem; }
}
