/* ============================================================
   ENTRÜMPELUNG NRW - CUSTOM STYLES
   Bootstrap 5.3 Override & Erweiterungen
   ============================================================ */

/* -----------------------------------------------------------
   CSS-VARIABLEN
   ----------------------------------------------------------- */
:root {
    --primary:   #1a1a2e;
    --secondary: #16213e;
    --accent:    #ffc107;
    --accent-dark: #e6ac00;
    --success:   #198754;
    --info:      #0dcaf0;
    --warning:   #ffc107;
    --danger:    #dc3545;
    --light:     #f8f9fa;
    --dark:      #1a1a2e;
    --gray:      #6c757d;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --radius:    12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------------------------------------
   BASIS-STYLES
   ----------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fafbfc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

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

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

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* -----------------------------------------------------------
   NAVIGATION
   ----------------------------------------------------------- */
#mainNav {
    transition: var(--transition);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#mainNav.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: var(--shadow-md);
}

#mainNav .nav-link {
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--accent-dark) !important;
    background: rgba(255,193,7,0.1);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 60%;
}

#mainNav .dropdown-menu {
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 280px;
}

#mainNav .dropdown-item {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    margin: 0 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

#mainNav .dropdown-item:hover {
    background: rgba(255,193,7,0.1);
    color: var(--accent-dark);
}

/* -----------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0f3460 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-section .container { position: relative; z-index: 1; }

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Hero Form Card */
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-form-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-form-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,193,7,0.15);
}

.hero-form-card .btn-submit {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
}

.hero-form-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,193,7,0.4);
}

/* -----------------------------------------------------------
   SECTIONS
   ----------------------------------------------------------- */
.section-padding { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    background: rgba(255,193,7,0.15);
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
}

/* -----------------------------------------------------------
   SERVICE CARDS
   ----------------------------------------------------------- */
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,193,7,0.15) 0%, rgba(255,193,7,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: var(--accent-dark);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* -----------------------------------------------------------
   FEATURE LIST
   ----------------------------------------------------------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* -----------------------------------------------------------
   PROCESS STEPS
   ----------------------------------------------------------- */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.process-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Connector line between steps (desktop) */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), transparent);
        z-index: -1;
    }
}

/* -----------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------- */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* -----------------------------------------------------------
   FAQ ACCORDION
   ----------------------------------------------------------- */
.accordion-item {
    border: none;
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255,193,7,0.05);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255,193,7,0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a2e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* -----------------------------------------------------------
   CTA BANNER
   ----------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner .container { position: relative; z-index: 1; }

/* -----------------------------------------------------------
   CITY PAGE STYLES
   ----------------------------------------------------------- */
.city-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
}

.city-hero h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.city-hero .breadcrumb-item,
.city-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.city-hero .breadcrumb-item.active {
    color: var(--accent);
}

.city-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,193,7,0.3);
    display: inline-block;
}

.city-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.city-faq .accordion-button {
    font-size: 1rem;
}

/* -----------------------------------------------------------
   FLOATING CTA (Mobile)
   ----------------------------------------------------------- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(25,135,84,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(25,135,84,0); }
    100% { box-shadow: 0 0 0 0 rgba(25,135,84,0); }
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%) !important;
}

.footer-links a {
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent) !important;
    transform: translateX(4px);
}

.hover-warning:hover {
    color: var(--accent) !important;
}

/* -----------------------------------------------------------
   FLASH MESSAGES
   ----------------------------------------------------------- */
.flash-container .alert {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.4s ease-out;
}

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

/* -----------------------------------------------------------
   FORM VALIDATION STYLES
   ----------------------------------------------------------- */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--danger);
    background-image: none;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success);
    background-image: none;
}

.invalid-feedback {
    font-size: 0.85rem;
    font-weight: 500;
}

/* -----------------------------------------------------------
   SCROLLBAR STYLING
   ----------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }

/* -----------------------------------------------------------
   RESPONSIVE ANPASSUNGEN
   ----------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-section { padding: 80px 0 60px; }
    .hero-stats { gap: 1.5rem; }
    .section-padding { padding: 60px 0; }
    .cta-banner { padding: 2rem; }

    #mainNav .dropdown-menu {
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.05);
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-stat { text-align: left; display: flex; align-items: center; gap: 0.75rem; }
    .hero-stat-number { font-size: 1.5rem; }
    .process-step:not(:last-child)::after { display: none; }
}

/* -----------------------------------------------------------
   UTILITY CLASSES
   ----------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.shadow-hover {
    transition: var(--transition);
}

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

.border-gradient {
    border-image: linear-gradient(135deg, var(--accent), var(--accent-dark)) 1;
}

/* 2026 Modern Refresh */
:root{--glass:rgba(255,255,255,.72);--glass-border:rgba(255,255,255,.28);--soft-bg:#f4f7fb}
body{background:var(--soft-bg);letter-spacing:-.01em}
#mainNav{background:rgba(255,255,255,.82)!important;backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.5)}
.site-logo{max-width:190px;max-height:58px;object-fit:contain}
.hero-section{background:radial-gradient(circle at 80% 15%,rgba(255,193,7,.22),transparent 28%),radial-gradient(circle at 15% 85%,rgba(52,152,219,.18),transparent 32%),linear-gradient(135deg,#0b1020 0%,#17223b 52%,#0f3460 100%);padding:140px 0 120px}
.hero-section:after{content:"";position:absolute;inset:24px;border:1px solid rgba(255,255,255,.08);border-radius:36px;pointer-events:none}
.hero-title{font-size:clamp(3rem,6vw,6.2rem);line-height:.96;letter-spacing:-.055em;max-width:900px}
.hero-subtitle{font-size:1.18rem;max-width:670px;color:rgba(255,255,255,.74)}
.hero-badge{background:rgba(255,255,255,.1);border:1px solid var(--glass-border);backdrop-filter:blur(12px)}
.service-card{height:100%;background:var(--glass);border:1px solid rgba(255,255,255,.78);backdrop-filter:blur(18px);box-shadow:0 18px 50px rgba(15,34,60,.09);overflow:hidden;transform:translateY(0)}
.service-card:hover{transform:translateY(-10px) scale(1.01);box-shadow:0 28px 70px rgba(15,34,60,.16)}
.service-image{height:220px;margin:-2rem -2rem 1.6rem;overflow:hidden}.service-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.service-card:hover .service-image img{transform:scale(1.06)}
.section-title{font-size:clamp(2.2rem,4vw,4rem);letter-spacing:-.045em}.section-subtitle{font-size:1.12rem}
.legal-hero{padding:100px 0 65px;background:linear-gradient(135deg,#0b1020,#0f3460);color:#fff}.legal-hero h1{font-size:clamp(2.8rem,6vw,5rem);font-weight:800;letter-spacing:-.05em}.legal-card{max-width:920px;margin:auto;background:rgba(255,255,255,.82);backdrop-filter:blur(18px);border:1px solid #fff;border-radius:28px;padding:clamp(1.5rem,5vw,4rem);box-shadow:0 24px 70px rgba(15,34,60,.1)}.legal-section+ .legal-section{border-top:1px solid #e8edf4;margin-top:2rem;padding-top:2rem}.legal-section h2{font-size:1.35rem;font-weight:750}
.cookie-banner{position:fixed;left:24px;right:24px;bottom:24px;z-index:10000;display:flex;align-items:center;justify-content:space-between;gap:24px;max-width:1100px;margin:auto;padding:20px 24px;background:rgba(11,16,32,.94);color:#fff;border:1px solid rgba(255,255,255,.14);border-radius:20px;backdrop-filter:blur(18px);box-shadow:0 24px 70px rgba(0,0,0,.28)}.cookie-banner p{color:rgba(255,255,255,.72);font-size:.9rem}.cookie-banner a{color:#ffc107}.cookie-actions{display:flex;gap:10px;flex-shrink:0}
.reveal-modern{opacity:0;transform:translateY(28px);transition:opacity .75s ease,transform .75s ease}.reveal-modern.is-visible{opacity:1;transform:none}
@media(max-width:767px){.hero-section{padding:100px 0 80px}.hero-section:after{inset:10px;border-radius:24px}.hero-title{font-size:3.2rem}.cookie-banner{left:12px;right:12px;bottom:12px;display:block}.cookie-actions{margin-top:16px;flex-wrap:wrap}.service-image{height:190px}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal-modern{opacity:1;transform:none}}

/* ============================================================
   LUXURY WHITE / BLACK / GOLD REDESIGN 2026
   ============================================================ */
:root {
    --lux-black: #080808;
    --lux-black-soft: #111111;
    --lux-gold: #c9a24d;
    --lux-gold-light: #e6ca82;
    --lux-cream: #f8f6f1;
    --lux-white: #ffffff;
    --lux-line: rgba(8,8,8,.10);
    --accent: var(--lux-gold);
    --accent-dark: #a78031;
    --primary: var(--lux-black);
    --secondary: var(--lux-black-soft);
    --dark: var(--lux-black);
    --shadow-sm: 0 8px 30px rgba(0,0,0,.06);
    --shadow-md: 0 18px 50px rgba(0,0,0,.10);
    --shadow-lg: 0 32px 90px rgba(0,0,0,.16);
    --radius: 18px;
    --radius-lg: 30px;
}

body { background:#fff; color:#1b1b1b; letter-spacing:-.01em; }
h1,h2,h3,h4,h5,h6 { color:var(--lux-black); letter-spacing:-.035em; }
.text-warning { color:var(--lux-gold)!important; }
.bg-warning { background:var(--lux-gold)!important; }
.btn-warning { background:var(--lux-gold); border-color:var(--lux-gold); color:#080808; }
.btn-warning:hover { background:var(--lux-gold-light); border-color:var(--lux-gold-light); color:#080808; transform:translateY(-2px); }

.top-bar { background:#050505!important; border-bottom:1px solid rgba(201,162,77,.16); }
#mainNav { background:rgba(255,255,255,.90)!important; backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px); border-bottom:1px solid rgba(8,8,8,.06); box-shadow:none!important; }
#mainNav.scrolled { background:rgba(255,255,255,.96)!important; box-shadow:0 12px 40px rgba(0,0,0,.08)!important; }
#mainNav .nav-link { font-size:.9rem; font-weight:600!important; color:#111!important; }
#mainNav .nav-link:hover,#mainNav .nav-link.active { background:transparent; color:var(--lux-gold)!important; }
.site-logo { max-height:52px; width:auto; }
.brand-icon { background:#0a0a0a!important; color:var(--lux-gold)!important; }

.luxury-hero { min-height:760px; display:flex; align-items:center; padding:105px 0 110px; background:radial-gradient(circle at 12% 18%, rgba(201,162,77,.17), transparent 28%), radial-gradient(circle at 86% 75%, rgba(201,162,77,.10), transparent 25%), linear-gradient(120deg,#050505 0%,#0b0b0b 52%,#15130f 100%); }
.luxury-hero::before { background:linear-gradient(rgba(255,255,255,.027) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.027) 1px,transparent 1px); background-size:64px 64px; opacity:1; mask-image:linear-gradient(to bottom,black,transparent 88%); }
.luxury-hero::after { content:""; position:absolute; width:540px; height:540px; border:1px solid rgba(201,162,77,.18); border-radius:50%; right:-250px; top:40px; box-shadow:0 0 0 80px rgba(201,162,77,.025),0 0 0 160px rgba(201,162,77,.018); }
.luxury-badge { background:transparent; border:0; padding:0; color:#eee5d0; font-weight:600; letter-spacing:.11em; text-transform:uppercase; font-size:.72rem; }
.gold-dot { width:7px; height:7px; border-radius:50%; background:var(--lux-gold); box-shadow:0 0 18px rgba(201,162,77,.8); margin-right:.8rem; }
.hero-title { color:#fff; font-size:clamp(3rem,6.3vw,5.8rem); line-height:.98; font-weight:700; max-width:820px; margin-bottom:1.8rem; letter-spacing:-.065em; }
.luxury-subtitle { color:rgba(255,255,255,.70); opacity:1; font-size:1.12rem; line-height:1.8; max-width:640px; }
.btn-gold { background:linear-gradient(135deg,#e0c171,#b98d32); border:1px solid rgba(255,255,255,.18); color:#080808; box-shadow:0 16px 45px rgba(201,162,77,.18); padding:.9rem 1.5rem; }
.btn-gold:hover { color:#080808; transform:translateY(-3px); box-shadow:0 22px 55px rgba(201,162,77,.28); }
.btn-luxury-outline { border:1px solid rgba(255,255,255,.28); color:#fff; background:rgba(255,255,255,.04); backdrop-filter:blur(12px); padding:.9rem 1.5rem; }
.btn-luxury-outline:hover { border-color:var(--lux-gold); color:var(--lux-gold-light); background:rgba(201,162,77,.06); transform:translateY(-3px); }
.hero-stats { border-top:1px solid rgba(255,255,255,.12); padding-top:1.5rem; gap:0; margin-top:2.4rem; }
.hero-stat { text-align:left; padding:0 1.6rem; border-right:1px solid rgba(255,255,255,.12); flex:1; }
.hero-stat:first-child { padding-left:0; }.hero-stat:last-child { border:0; }
.hero-stat-number { color:var(--lux-gold-light); font-size:1.8rem; }.hero-stat-label { color:rgba(255,255,255,.52); opacity:1; }
.luxury-form-card { border:1px solid rgba(255,255,255,.45); background:rgba(255,255,255,.95); padding:2.25rem; box-shadow:0 40px 100px rgba(0,0,0,.36); backdrop-filter:blur(28px); }
.form-kicker { color:#9a762d; font-size:.69rem; letter-spacing:.16em; font-weight:800; margin-bottom:.6rem; }
.luxury-form-card h3 { font-size:1.8rem; }.luxury-form-card .form-control,.luxury-form-card .form-select { background:#f8f7f4; border:1px solid #e8e4dc; border-radius:12px; }
.luxury-form-card .form-control:focus,.luxury-form-card .form-select:focus { background:#fff; border-color:var(--lux-gold); box-shadow:0 0 0 4px rgba(201,162,77,.12); }

.section-padding { padding:110px 0; }
.luxe-soft { background:var(--lux-cream)!important; }
.section-header { max-width:780px; margin-bottom:4rem; }
.section-label { background:transparent; color:#9b772e; letter-spacing:.15em; font-size:.7rem; font-weight:800; padding:0; }
.section-title { font-size:clamp(2.25rem,4.2vw,4rem); line-height:1.06; letter-spacing:-.055em; }
.section-subtitle { color:#686868; line-height:1.8; font-size:1.08rem; }

.service-card { border:1px solid var(--lux-line); border-radius:24px; padding:1.2rem; box-shadow:none; background:#fff; }
.service-card::before { display:none; }
.service-card:hover { transform:translateY(-10px); border-color:rgba(201,162,77,.55); box-shadow:0 28px 70px rgba(0,0,0,.10); }
.service-card h4 { padding:1rem .7rem 0; font-size:1.35rem; }.service-card p { padding:0 .7rem .7rem; color:#6a6a6a; }
.service-image { height:245px; border-radius:17px; overflow:hidden; margin-bottom:.5rem; background:#eee; }
.service-image img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }.service-card:hover .service-image img { transform:scale(1.055); }
.service-icon { width:64px; height:64px; background:#0b0b0b; color:var(--lux-gold); border-radius:18px; margin:1rem .7rem 1.4rem; }
.service-card .badge { background:rgba(8,8,8,.88)!important; color:var(--lux-gold-light)!important; backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.12); padding:.55rem .8rem; z-index:2; }
.feature-list li i { color:var(--lux-gold)!important; }
.process-step { background:#fff; border:1px solid var(--lux-line); border-radius:22px; padding:2rem; height:100%; transition:.35s ease; }.process-step:hover { transform:translateY(-7px); border-color:rgba(201,162,77,.5); box-shadow:var(--shadow-md); }
.process-step-number { background:#0b0b0b!important; color:var(--lux-gold-light)!important; box-shadow:none!important; }
.testimonial-card { border:1px solid var(--lux-line); border-radius:24px; box-shadow:none; }.testimonial-card:hover { border-color:rgba(201,162,77,.45); box-shadow:var(--shadow-md); }
.testimonial-stars { color:var(--lux-gold)!important; }.testimonial-avatar { background:#0b0b0b!important; color:var(--lux-gold-light)!important; }
.city-card:hover { border-color:var(--lux-gold); color:#0b0b0b; }
.accordion-item { border:1px solid var(--lux-line)!important; border-radius:16px!important; overflow:hidden; margin-bottom:12px; background:#fff; }.accordion-button:not(.collapsed) { background:#0b0b0b; color:#fff; box-shadow:none; }.accordion-button:not(.collapsed) .text-warning { color:var(--lux-gold-light)!important; }
.cta-banner { background:radial-gradient(circle at 10% 20%,rgba(201,162,77,.20),transparent 30%),linear-gradient(135deg,#050505,#17140e)!important; border:1px solid rgba(201,162,77,.25); border-radius:32px!important; box-shadow:0 35px 90px rgba(0,0,0,.22); padding:5rem 2rem!important; }
.cta-banner h2 { font-size:clamp(2.4rem,5vw,4.4rem); letter-spacing:-.055em; }
.bg-gradient-primary { background:radial-gradient(circle at 10% 10%,rgba(201,162,77,.18),transparent 32%),linear-gradient(145deg,#070707,#18150f)!important; }

.luxury-footer { background:#050505; color:#fff; padding:0 0 1.5rem; border-top:1px solid rgba(201,162,77,.16); }
.footer-topline { height:1px; background:linear-gradient(90deg,transparent,var(--lux-gold),transparent); opacity:.55; }
.footer-brand { display:inline-flex; align-items:center; gap:.9rem; color:#fff; font-size:1.25rem; font-weight:700; letter-spacing:-.035em; margin-bottom:1.4rem; }.footer-brand:hover { color:var(--lux-gold-light); }
.footer-brand-mark { width:48px; height:48px; display:grid; place-items:center; border:1px solid rgba(201,162,77,.35); border-radius:14px; color:var(--lux-gold); }.footer-logo { max-width:210px; max-height:58px; object-fit:contain; }
.footer-intro,.footer-muted { color:rgba(255,255,255,.53); line-height:1.8; font-size:.94rem; }
.footer-cta { display:inline-flex; gap:.6rem; align-items:center; color:var(--lux-gold-light); font-weight:600; margin-top:.5rem; }.footer-cta:hover { color:#fff; gap:.9rem; }
.footer-heading { color:#c7a453; font-size:.7rem; letter-spacing:.17em; text-transform:uppercase; font-weight:800; margin-bottom:1.25rem; }
.footer-nav { list-style:none; padding:0; margin:0; }.footer-nav li { margin:.75rem 0; }.footer-nav a { color:rgba(255,255,255,.64); font-size:.93rem; }.footer-nav a:hover { color:#fff; padding-left:4px; }.legal-links a { color:rgba(255,255,255,.78); }
.footer-contact-list { display:grid; gap:.85rem; }.footer-contact-list>a,.footer-contact-item { display:flex; align-items:center; gap:.8rem; color:#fff; }.footer-contact-list>a>span,.footer-contact-item>span { width:39px; height:39px; display:grid; place-items:center; border:1px solid rgba(201,162,77,.28); border-radius:12px; color:var(--lux-gold); flex:0 0 auto; }.footer-contact-list small { display:block; color:rgba(255,255,255,.40); font-size:.7rem; }.footer-contact-list strong { display:block; color:rgba(255,255,255,.82); font-size:.86rem; font-weight:500; }.footer-contact-list>a:hover strong { color:var(--lux-gold-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.09); padding-top:1.5rem; display:flex; justify-content:space-between; gap:2rem; color:rgba(255,255,255,.38); font-size:.78rem; }.footer-bottom p { margin:0; }.footer-bottom>div { display:flex; align-items:center; gap:.7rem; }.gold-separator { width:4px; height:4px; border-radius:50%; background:var(--lux-gold); }
.cookie-banner { background:rgba(7,7,7,.96)!important; border:1px solid rgba(201,162,77,.25)!important; box-shadow:0 25px 80px rgba(0,0,0,.4)!important; backdrop-filter:blur(22px); }

@media (max-width:991.98px) {
    .luxury-hero { min-height:auto; padding:80px 0 90px; }.hero-title { font-size:clamp(2.8rem,10vw,4.6rem); }.hero-stats { flex-wrap:wrap; row-gap:1.2rem; }.hero-stat { min-width:50%; padding:.2rem 1rem; border-right:0; }.hero-stat:nth-child(odd){padding-left:0}.luxury-form-card { margin-top:1rem; }
    .section-padding { padding:80px 0; }
}
@media (max-width:767.98px) {
    .hero-title { letter-spacing:-.052em; }.hero-actions .btn { width:100%; }.hero-stats { display:grid; grid-template-columns:1fr 1fr; }.hero-stat { min-width:0; padding:.5rem 0; }.luxury-form-card { padding:1.35rem; border-radius:22px; }.section-title { font-size:2.55rem; }.section-padding { padding:70px 0; }.service-image { height:220px; }.footer-bottom { flex-direction:column; gap:.8rem; }.cta-banner { padding:3.5rem 1.25rem!important; border-radius:24px!important; }
}

/* ============================================================
   HERO MEDIA + WHATSAPP 2026
============================================================ */
.luxury-hero { isolation:isolate; overflow:hidden; }
.hero-content-layer { position:relative; z-index:4; }
.hero-background-video,
.hero-background-image { position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.hero-background-video { object-fit:cover; object-position:center; }
.hero-background-image { background-size:cover; background-position:center; background-repeat:no-repeat; }
.hero-media-overlay { position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(90deg,rgba(0,0,0,var(--hero-overlay, .62)) 0%,rgba(0,0,0,var(--hero-overlay, .62)) 47%,rgba(0,0,0,var(--hero-overlay, .62)) 100%),radial-gradient(circle at 12% 18%,rgba(201,162,77,.18),transparent 30%); }
.hero-bg-image::before,
.hero-bg-video::before { z-index:2; }
.hero-bg-image::after,
.hero-bg-video::after { z-index:3; opacity:.55; }

.floating-contact-stack { position:fixed; right:22px; bottom:24px; z-index:1080; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.floating-whatsapp { min-height:56px; display:flex; align-items:center; gap:10px; padding:0 20px; border-radius:999px; background:#111; color:#fff; border:1px solid rgba(201,162,77,.45); box-shadow:0 18px 50px rgba(0,0,0,.28); font-weight:700; text-decoration:none; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.floating-whatsapp i { font-size:1.55rem; color:#d9b657; }
.floating-whatsapp:hover { color:#fff; transform:translateY(-4px); border-color:#d9b657; box-shadow:0 24px 60px rgba(0,0,0,.36); }
.floating-phone { width:56px; height:56px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(135deg,#e0c171,#b98d32); color:#090909; box-shadow:0 16px 40px rgba(0,0,0,.28); text-decoration:none; }
.floating-phone i { font-size:1.35rem; }

@media (max-width:767.98px) {
    .floating-contact-stack { right:14px; bottom:16px; gap:10px; }
    .floating-whatsapp { width:56px; min-height:56px; padding:0; justify-content:center; }
    .floating-whatsapp span { display:none; }
    .hero-media-overlay { background:linear-gradient(180deg,rgba(0,0,0,var(--hero-overlay, .62)) 0%,rgba(0,0,0,var(--hero-overlay, .62)) 100%),radial-gradient(circle at 15% 15%,rgba(201,162,77,.14),transparent 35%); }
}

@media (prefers-reduced-motion: reduce) {
    /* Das vom Betreiber gewählte Hero-Video bleibt sichtbar.
       Nur CSS-Animationen und Übergänge werden reduziert. */
    .hero-bg-video::before,
    .hero-bg-video::after { animation:none !important; }
}


/* ============================================================
   RESPONSIVE INDEX + SEPARATE HERO VIDEOS 2026
============================================================ */
.hero-video-mobile { display:none; }
.hero-video-desktop { display:block; }

@media (max-width: 1199.98px) {
    .luxury-hero .container { max-width: 960px; }
    .hero-title { font-size:clamp(3rem,6vw,5.25rem); }
    .luxury-form-card { padding:1.75rem; }
    .hero-stats { gap:0; }
    .hero-stat { flex:1 1 25%; padding-inline:1rem; }
    .section-padding { padding:90px 0; }
}

@media (max-width: 991.98px) {
    html, body { max-width:100%; overflow-x:hidden; }
    .luxury-hero { padding:64px 0 72px; min-height:auto; }
    .luxury-hero .row { --bs-gutter-y:2.25rem; }
    .luxury-hero .col-lg-6:first-child { text-align:center; }
    .luxury-badge { margin-inline:auto; }
    .hero-title { max-width:780px; margin-inline:auto; font-size:clamp(3rem,8vw,5.4rem); }
    .luxury-subtitle { max-width:680px; margin-inline:auto; }
    .hero-actions { justify-content:center; }
    .hero-stats { max-width:680px; margin-inline:auto; margin-top:2rem; }
    .luxury-form-card { max-width:760px; margin-inline:auto; }
    .section-header { margin-bottom:3rem; }
    .service-image { height:clamp(210px,30vw,300px); }
}

@media (max-width: 767.98px) {
    .hero-video-desktop { display:none; }
    .hero-video-mobile { display:block; }
    .hero-background-video { object-position:center center; }
    .luxury-hero { padding:42px 0 54px; }
    .luxury-hero .container { padding-left:18px; padding-right:18px; }
    .luxury-badge { font-size:.62rem; letter-spacing:.10em; line-height:1.45; padding:.55rem .75rem; }
    .hero-title { font-size:clamp(2.55rem,13vw,4rem); line-height:.98; letter-spacing:-.055em; overflow-wrap:anywhere; }
    .luxury-subtitle { font-size:1rem; line-height:1.65; margin-bottom:1.6rem; }
    .hero-actions { gap:.7rem !important; margin-bottom:1.5rem !important; }
    .hero-actions .btn { min-height:52px; display:flex; align-items:center; justify-content:center; padding:.8rem 1rem !important; font-size:.95rem; }
    .hero-stats { grid-template-columns:repeat(2,minmax(0,1fr)); width:100%; gap:0; margin-top:1.5rem; border-top:1px solid rgba(255,255,255,.14); }
    .hero-stat { padding:1rem .5rem; border-bottom:1px solid rgba(255,255,255,.10); }
    .hero-stat:nth-child(odd) { border-right:1px solid rgba(255,255,255,.10); }
    .hero-stat-number { font-size:1.45rem; }
    .hero-stat-label { font-size:.72rem; line-height:1.35; }
    .luxury-form-card { padding:1.2rem; border-radius:20px; }
    .luxury-form-card h3 { font-size:1.5rem; line-height:1.15; }
    .luxury-form-card .text-muted { font-size:.9rem; }
    .luxury-form-card .row { --bs-gutter-x:.8rem; --bs-gutter-y:.8rem; }
    .luxury-form-card .form-control, .luxury-form-card .form-select { min-height:48px; font-size:16px; padding:.7rem .8rem; }
    .luxury-form-card textarea.form-control { min-height:100px; }
    .luxury-form-card .form-label { font-size:.8rem; }
    .section-padding { padding:62px 0; }
    .section-header { margin-bottom:2.25rem; padding-inline:.25rem; }
    .section-title { font-size:clamp(2rem,10vw,2.8rem); line-height:1.04; }
    .section-subtitle { font-size:.98rem; line-height:1.65; }
    .service-card, .testimonial-card, .process-step { border-radius:20px; }
    .service-image { height:230px; }
    .process-step { padding:1.5rem; }
    .cta-banner h2 { font-size:clamp(2rem,10vw,3rem); }
    .cta-banner .btn { width:100%; }
    .accordion-button { padding:1.05rem 1rem; font-size:.95rem; }
    .accordion-body { padding:0 1rem 1.1rem; font-size:.93rem; }
    img, video { max-width:100%; }
}

@media (max-width: 399.98px) {
    .luxury-hero .container { padding-left:14px; padding-right:14px; }
    .hero-title { font-size:clamp(2.25rem,13vw,3.25rem); }
    .luxury-form-card { padding:1rem; }
    .hero-stat-label { font-size:.67rem; }
    .section-title { font-size:2rem; }
    .floating-contact-stack { right:10px; bottom:12px; }
}


/* ============================================================
   NRW LOCATIONS / CITY SEO 2026
============================================================ */
.locations-hero{position:relative;overflow:hidden;padding:clamp(5rem,9vw,9rem) 0 clamp(4rem,7vw,7rem);background:#090909;color:#fff}.locations-hero:before{content:"";position:absolute;inset:-35% auto auto -12%;width:620px;height:620px;border-radius:50%;background:radial-gradient(circle,rgba(210,164,57,.18),transparent 68%);pointer-events:none}.locations-hero:after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,#000,transparent)}.locations-hero .container{z-index:1}.eyebrow-gold,.eyebrow-dark{display:inline-flex;align-items:center;text-transform:uppercase;letter-spacing:.16em;font-size:.72rem;font-weight:800}.eyebrow-gold{color:#d7aa43}.eyebrow-dark{color:#9b7421}.locations-hero h1{font-size:clamp(3rem,7vw,7rem);line-height:.94;letter-spacing:-.06em;font-weight:800;max-width:1050px;margin:1.25rem 0 1.5rem}.locations-hero h1 span{color:#d7aa43}.locations-hero>div>p{font-size:clamp(1rem,1.6vw,1.25rem);color:rgba(255,255,255,.68);max-width:780px;line-height:1.7}.locations-search-wrap{position:relative;display:flex;align-items:center;max-width:760px;margin-top:2.5rem;background:#fff;border-radius:999px;padding:.45rem .55rem .45rem 1.25rem;box-shadow:0 24px 70px rgba(0,0,0,.38)}.locations-search-wrap>i{color:#9b7421;font-size:1.2rem}.locations-search-wrap .form-control{border:0;box-shadow:none!important;padding:.9rem 1rem;font-size:1rem;background:transparent}.locations-count{white-space:nowrap;background:#0b0b0b;color:#d7aa43;border-radius:999px;padding:.7rem 1rem;font-size:.75rem;font-weight:800}.letter-nav{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:3.5rem}.letter-nav a{width:42px;height:42px;display:grid;place-items:center;border:1px solid #e7e2d7;border-radius:50%;color:#111;text-decoration:none;font-weight:800;transition:.25s}.letter-nav a:hover{background:#111;color:#d7aa43;border-color:#111;transform:translateY(-2px)}.city-letter-group{scroll-margin-top:105px;margin-bottom:4rem}.city-letter-heading{display:flex;align-items:center;gap:1rem;margin-bottom:1.25rem}.city-letter-heading span{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#0a0a0a;color:#d7aa43;font-size:1.4rem;font-weight:800}.city-letter-heading div{height:1px;flex:1;background:#ece7dc}.city-letter-heading small{color:#888;font-weight:700}.city-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.8rem}.city-link-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:.9rem;padding:1rem 1.1rem;border:1px solid #ece7dc;border-radius:18px;color:#111;text-decoration:none;background:#fff;transition:.28s}.city-link-card:hover{border-color:#d7aa43;box-shadow:0 18px 50px rgba(35,28,10,.09);transform:translateY(-3px);color:#111}.city-pin{width:40px;height:40px;border-radius:13px;display:grid;place-items:center;background:#f8f3e8;color:#9b7421}.city-link-card strong{display:block;font-size:.94rem}.city-link-card small{display:block;color:#888;font-size:.72rem;margin-top:.15rem}.city-arrow{color:#bca36a;transition:.25s}.city-link-card:hover .city-arrow{transform:translate(2px,-2px);color:#111}.city-empty{text-align:center;padding:5rem 1rem}.city-empty>i{font-size:2.5rem;color:#d7aa43}.city-hero-premium{position:relative;overflow:hidden;padding:clamp(4.5rem,8vw,8rem) 0;background:#080808;color:#fff}.city-hero-premium:before{content:"";position:absolute;width:650px;height:650px;border:1px solid rgba(215,170,67,.18);border-radius:50%;left:-180px;top:-290px;box-shadow:0 0 100px rgba(215,170,67,.1)}.city-breadcrumb .breadcrumb-item,.city-breadcrumb .breadcrumb-item.active{color:rgba(255,255,255,.55)}.city-breadcrumb a{color:#d7aa43;text-decoration:none}.city-breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(255,255,255,.3)}.city-hero-premium h1{font-size:clamp(2.7rem,6vw,6.2rem);line-height:.98;letter-spacing:-.055em;font-weight:800;margin:1.2rem 0 1.5rem;max-width:930px}.city-hero-premium .lead{max-width:900px;color:rgba(255,255,255,.7);line-height:1.7;font-size:clamp(1rem,1.5vw,1.2rem)}.city-hero-trust{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);backdrop-filter:blur(18px);border-radius:24px;padding:1.5rem;display:grid;gap:1rem}.city-hero-trust span{display:flex;align-items:center;gap:.65rem;font-weight:700;font-size:.9rem}.city-hero-trust i{color:#d7aa43;font-size:1.1rem}.city-content-premium{background:linear-gradient(180deg,#fff,#fbfaf7)!important}.city-article-block{display:grid;grid-template-columns:72px 1fr;gap:1.5rem;padding:2.5rem 0;border-bottom:1px solid #e9e5dc}.section-number{font-size:.85rem;color:#a17b29;font-weight:800;padding-top:.3rem}.city-article-block h2,.city-faq-section h2{font-size:clamp(1.8rem,3vw,3rem);line-height:1.05;letter-spacing:-.04em;font-weight:800;margin:.7rem 0 1.2rem}.city-article-block p{color:#5f5f5f;font-size:1.04rem;line-height:1.85}.city-service-pills{display:flex;flex-wrap:wrap;gap:.65rem;margin-top:1.4rem}.city-service-pills span{padding:.65rem .9rem;border-radius:999px;background:#0b0b0b;color:#fff;font-size:.78rem;font-weight:700}.city-service-pills span:nth-child(even){background:#f1e7cf;color:#6f5116}.city-sidebar-sticky{position:sticky;top:110px;display:grid;gap:1rem}.city-offer-card{border-radius:28px;background:#0b0b0b;color:#fff;padding:2rem;box-shadow:0 28px 70px rgba(0,0,0,.16)}.city-offer-card h2{font-size:2rem;letter-spacing:-.04em;font-weight:800;margin:.8rem 0 1rem}.city-offer-card p{color:rgba(255,255,255,.65);line-height:1.7}.city-call-link{display:flex;align-items:center;gap:.8rem;color:#fff;text-decoration:none;padding-top:.25rem}.city-call-link>i{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:rgba(215,170,67,.18);color:#d7aa43}.city-call-link span{font-weight:800}.city-call-link small{display:block;color:rgba(255,255,255,.5);font-size:.7rem;font-weight:600}.city-related-card{border:1px solid #e9e4d9;border-radius:24px;padding:1.5rem;background:#fff}.city-related-card h3{font-size:1rem;font-weight:800;margin:0}.city-related-card a{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:.7rem;padding:.8rem 0;border-bottom:1px solid #eee9df;color:#222;text-decoration:none;font-size:.86rem}.city-related-card a:last-child{border-bottom:0}.city-related-card a:hover{color:#9b7421}.city-faq-section{padding-top:3.5rem}.city-faq .accordion-item{border:0;border-bottom:1px solid #e9e4d9}.city-faq .accordion-button{padding:1.25rem 0;font-weight:750;background:transparent!important;box-shadow:none!important;color:#111}.city-faq .accordion-button:not(.collapsed){color:#9b7421}.city-faq .accordion-body{padding:0 0 1.4rem;color:#606060;line-height:1.75}
@media(max-width:991.98px){.city-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.city-sidebar-sticky{position:static}.city-hero-trust{max-width:520px}.city-article-block{grid-template-columns:50px 1fr}}
@media(max-width:575.98px){.locations-hero{padding-top:4.5rem}.locations-hero h1{font-size:clamp(2.6rem,15vw,4.1rem)}.locations-search-wrap{border-radius:20px;padding:.35rem .45rem .35rem 1rem}.locations-count{display:none}.letter-nav{gap:.4rem}.letter-nav a{width:36px;height:36px;font-size:.82rem}.city-link-grid{grid-template-columns:1fr}.city-link-card{border-radius:16px}.city-letter-group{margin-bottom:3rem}.city-hero-premium{padding:4.5rem 0}.city-hero-premium h1{font-size:clamp(2.4rem,12vw,3.8rem);overflow-wrap:anywhere}.city-article-block{grid-template-columns:1fr;gap:.5rem;padding:2rem 0}.section-number{padding:0}.city-offer-card{padding:1.5rem;border-radius:22px}.city-article-block h2,.city-faq-section h2{font-size:2rem}.city-service-pills span{font-size:.72rem}}


/* -----------------------------------------------------------
   MOBILE POLISH: FEATURE LIST + JOURNEY CARD
   ----------------------------------------------------------- */
.feature-list li {
    gap: 0.85rem;
}

.feature-list .feature-copy {
    flex: 1 1 auto;
    min-width: 0;
    color: #555;
    line-height: 1.55;
}

.feature-list .feature-copy strong {
    display: block;
    color: #111;
    font-size: 1.06rem;
    line-height: 1.3;
    margin-bottom: 0.14rem;
}

.feature-list .feature-copy span {
    display: block;
}

.journey-card-wrap {
    position: relative;
    padding-bottom: 2.5rem;
}

.journey-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem;
    border-radius: 30px;
    overflow: hidden;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.journey-step-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #111;
    font-size: 1.25rem;
}

.journey-step strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
}

.journey-step p {
    font-size: 1rem;
    line-height: 1.5;
}

.journey-float-badge {
    position: absolute;
    right: -10px;
    bottom: -20px;
    max-width: 220px;
    border-radius: 24px;
    padding: 1rem 1.1rem;
}

@media (max-width: 767.98px) {
    .feature-list li {
        margin-bottom: 1.15rem;
    }

    .feature-list .feature-copy strong {
        font-size: 1rem;
    }

    .journey-card-wrap {
        padding-bottom: 0;
    }

    .journey-card {
        padding: 1.55rem 1.15rem;
        border-radius: 26px;
    }

    .journey-card h3 {
        font-size: 1.55rem;
        line-height: 1.15;
        margin-bottom: 1.2rem !important;
    }

    .journey-step {
        gap: 0.9rem;
        margin-bottom: 1rem;
    }

    .journey-step-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .journey-step strong {
        font-size: 0.98rem;
    }

    .journey-step p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .journey-float-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin-top: 1rem;
        border-radius: 22px;
        padding: 1rem 1.1rem;
    }
}


/* Sticky Hauptnavigation */
#mainNav.sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1055;
    width: 100%;
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    #mainNav.sticky-top {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

@media (max-width: 991.98px) {
    #mainNav.sticky-top {
        box-shadow: 0 8px 28px rgba(0,0,0,.08) !important;
    }
}

/* ============================================================
   HERO CLICK LAYER FIX
   Prevent decorative/video layers from intercepting CTA clicks.
============================================================ */
.luxury-hero,
.hero-section {
    position: relative;
}

.luxury-hero::before,
.luxury-hero::after,
.hero-section::before,
.hero-section::after,
.hero-media-overlay,
.hero-background-video,
.hero-background-image {
    pointer-events: none !important;
}

.hero-background-video,
.hero-background-image {
    user-select: none;
    -webkit-user-select: none;
}

.hero-content-layer {
    position: relative !important;
    z-index: 20 !important;
    pointer-events: auto !important;
}

.hero-content-layer .hero-actions,
.hero-content-layer .hero-actions a,
.hero-content-layer .btn,
.hero-content-layer a[href],
.hero-content-layer button {
    position: relative;
    z-index: 21;
    pointer-events: auto !important;
    touch-action: manipulation;
}

.hero-content-layer .hero-stats,
.hero-content-layer .hero-badge,
.hero-content-layer .hero-title,
.hero-content-layer .hero-subtitle {
    position: relative;
    z-index: 20;
}

@media (max-width: 991.98px) {
    .hero-content-layer .hero-actions a {
        -webkit-tap-highlight-color: rgba(201, 162, 77, .22);
    }
}

/* ============================================================
   OFFER SECTION VISUAL POLISH
============================================================ */
.offer-section {
    padding: 78px 0 88px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.offer-section-shell {
    background: linear-gradient(180deg, #f8f5ef 0%, #fdfcf9 100%);
    border: 1px solid rgba(201,162,77,.16);
    border-radius: 34px;
    padding: 1.2rem;
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.06);
}

.offer-section-intro {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border: 1px solid rgba(201,162,77,.18);
    border-radius: 28px;
    padding: 2rem 1.55rem;
    box-shadow: 0 20px 46px rgba(17,17,17,.05);
}

.offer-section-intro .section-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: #9b7421;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.offer-section-intro h2 {
    font-size: clamp(2.45rem, 4vw, 4.2rem);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.offer-section-intro h2 span {
    color: #111;
}

.offer-section-intro > p {
    color: #505050;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.15rem;
}

.offer-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.1rem;
}

.offer-benefits span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 42px;
    padding: .72rem .95rem;
    background: #f7f1e4;
    color: #3f3420;
    border: 1px solid rgba(201,162,77,.18);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
}

.offer-benefits i {
    color: #0b0b0b;
    font-size: 1rem;
}

.offer-call-link {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    min-height: 58px;
    padding: .95rem 1.1rem;
    background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
    color: #ffffff;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(201,162,77,.22);
    box-shadow: 0 14px 34px rgba(17,17,17,.16);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.offer-call-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(17,17,17,.20);
    border-color: rgba(201,162,77,.45);
}

.offer-call-link > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0c171, #b98d32);
    color: #090909;
}

.offer-call-link > span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: .18rem;
}

.offer-call-link small {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.offer-call-link > span:last-child,
.offer-call-link strong,
.offer-call-link {
    font-weight: 700;
}

.offer-form-card {
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(17,17,17,.08);
}

.offer-form-card form,
.offer-form-card input,
.offer-form-card select,
.offer-form-card textarea,
.offer-form-card button,
.offer-form-card label,
.offer-form-card a {
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .offer-section {
        padding: 60px 0 68px;
    }

    .offer-section-intro {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .offer-section {
        padding: 46px 0 58px;
    }

    .offer-section-shell {
        padding: 0.85rem;
        border-radius: 24px;
    }

    .offer-section-intro {
        padding: 1.35rem 1.05rem;
        border-radius: 22px;
    }

    .offer-section-intro h2 {
        font-size: clamp(2.15rem, 12vw, 3rem);
        margin-bottom: .85rem;
    }

    .offer-section-intro > p {
        font-size: .98rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .offer-benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .offer-benefits span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
        padding: .8rem .9rem;
        line-height: 1.4;
    }

    .offer-call-link {
        width: 100%;
        border-radius: 16px;
        padding: .9rem 1rem;
    }

    .offer-call-link > span {
        min-width: 0;
    }

    .offer-call-link > span:last-child {
        overflow-wrap: anywhere;
    }

    .offer-form-card {
        border-radius: 22px;
    }
}
