/* ========================================
   MK RÄUMUNGEN - LUXUS GOLD DESIGN
   Modern, Warm, Menschenfreundlich
======================================== */

:root {
    --gold-primary: #c9a961;
    --gold-dark: #a38542;
    --gold-light: #e8d4a0;
    --gold-shimmer: #f4e4bc;
    --gold-gradient: linear-gradient(135deg, #c9a961 0%, #e8d4a0 50%, #a38542 100%);
    --gold-gradient-dark: linear-gradient(135deg, #8b6f33 0%, #c9a961 50%, #8b6f33 100%);
    --dark-primary: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --dark-tertiary: #3a3a3a;
    --warm-white: #faf7f2;
    --warm-beige: #f5ede0;
    --warm-cream: #ebe0cc;
    --text-dark: #2c2416;
    --text-medium: #5a4d35;
    --text-light: #8a7d65;
    --shadow-gold: 0 10px 40px rgba(201, 169, 97, 0.25);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 15px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }

p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

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

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--dark-primary);
    color: var(--warm-white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold-dark);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--gold-primary);
}

.top-bar a {
    color: var(--warm-white);
}

.top-bar a:hover {
    color: var(--gold-primary);
}

/* ========== HEADER / NAV ========== */
.header {
    background: var(--warm-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-deep);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-primary);
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
    font-family: var(--font-heading);
}

.logo-text span {
    color: var(--gold-dark);
    font-size: 0.75rem;
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: block;
    border-radius: 6px;
    position: relative;
}

.nav-menu > li > a:hover {
    color: var(--gold-dark);
}

.nav-menu > li > a.active {
    color: var(--gold-dark);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 70%;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: var(--shadow-deep);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--gold-primary);
    max-height: 450px;
    overflow-y: auto;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.dropdown li a:hover {
    background: var(--warm-beige);
    color: var(--gold-dark);
    border-left-color: var(--gold-primary);
    padding-left: 25px;
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--dark-primary) !important;
    padding: 12px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-primary);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(58, 47, 26, 0.75) 100%),
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    color: var(--warm-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 700px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding-top: 35px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    max-width: 700px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-beige {
    background: var(--warm-beige);
}

.section-dark {
    background: var(--dark-primary);
    color: var(--warm-white);
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 6px 18px;
    background: rgba(201, 169, 97, 0.12);
    border-radius: 50px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Gold decorative line */
.gold-line {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto;
    border-radius: 3px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border-color: var(--gold-primary);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 26, 0.7) 100%);
}

.service-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-primary);
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 0.98rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
    color: var(--gold-primary);
}

.service-link i {
    transition: transform 0.3s ease;
}

/* ========== ABOUT / FEATURES ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold-gradient);
    padding: 20px 28px;
    border-radius: 12px;
    color: var(--dark-primary);
    box-shadow: var(--shadow-deep);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    min-width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.feature-text h4 {
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-primary);
    margin: 0 auto 25px;
    box-shadow: var(--shadow-gold);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ========== CITIES SECTION ========== */
.cities-section {
    background: var(--warm-beige);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.city-chip {
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.city-chip:hover {
    background: var(--gold-gradient);
    color: var(--dark-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.city-chip i {
    color: var(--gold-primary);
    transition: var(--transition);
}

.city-chip:hover i {
    color: var(--dark-primary);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.district-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.district-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-deep);
}

.district-card h4 {
    color: var(--gold-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.district-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(58, 47, 26, 0.92)),
                url('../images/cta-bg.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.cta-banner h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT / FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: var(--dark-primary);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.15;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-info-box > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-text h5 {
    color: var(--gold-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-text a,
.contact-text p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

.contact-text a:hover {
    color: var(--gold-light);
}

.opening-hours {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.opening-hours h5 {
    color: var(--gold-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.opening-hours li.closed {
    color: rgba(255, 255, 255, 0.6);
}

.opening-hours li span:last-child {
    color: var(--gold-light);
    font-weight: 500;
}

/* Form */
.contact-form {
    background: white;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
    border-top: 5px solid var(--gold-primary);
}

.contact-form h3 {
    margin-bottom: 10px;
}

.contact-form > p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--warm-cream);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.form-check input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--gold-primary);
}

.form-check a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--dark-primary);
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.form-message {
    padding: 18px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
    font-size: 0.97rem;
    line-height: 1.6;
}

.form-message i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-left: 4px solid #2e7d32;
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    border-left: 4px solid #c62828;
    display: block;
}

.form-message.error a {
    color: #c62828;
    font-weight: 600;
    text-decoration: underline;
}

/* Spinner für Submit-Button */
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spin {
    animation: fa-spin 1s linear infinite;
}

@keyframes fa-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold-primary);
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--warm-cream);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-primary);
    font-size: 1.1rem;
}

.author-info h5 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--gold-primary);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    border-top: 4px solid var(--gold-primary);
    transform: translateY(200%);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-banner h4 i {
    color: var(--gold-primary);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: var(--text-medium);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cookie-decline {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--warm-cream);
}

.cookie-decline:hover {
    background: var(--warm-beige);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88), rgba(58, 47, 26, 0.82)),
                url('../images/hero-bg.jpg') center/cover;
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-header h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--gold-light);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    color: var(--gold-primary);
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
}

.content-block h2 {
    margin-bottom: 20px;
}

.content-block h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin: 25px 0;
}

.content-block ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.content-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: var(--gold-gradient);
    color: var(--dark-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.info-card i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 18px;
}

.info-card h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 0.95rem;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--gold-dark);
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-box {
    background: var(--warm-beige);
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid var(--gold-primary);
    margin: 25px 0;
}

.legal-box p {
    margin-bottom: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .top-bar-info {
        justify-content: center;
        gap: 15px;
        font-size: 0.82rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 25px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li > a {
        padding: 14px 0;
        border-bottom: 1px solid var(--warm-cream);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        border-top: none;
        background: var(--warm-beige);
        border-radius: 8px;
        margin-top: 5px;
    }

    .nav-menu > li.open .dropdown {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-cta {
        text-align: center;
        margin-top: 15px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-box,
    .contact-form {
        padding: 35px 25px;
    }

    .page-header {
        padding: 100px 0 70px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .service-content {
        padding: 25px 20px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-shimmer) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    font-size: 1.1rem;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== OPTIMIERTES IMPRESSUM ===== */
.impressum-main-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-deep);
}

.impressum-header {
    background: rgba(0,0,0,0.1);
    padding: 20px 30px;
}

.impressum-header h2 {
    margin: 0;
    color: var(--dark-primary);
    font-size: 1.3rem;
}

.impressum-header h2 i {
    margin-right: 10px;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
}

.impressum-col p {
    margin: 8px 0;
    color: var(--dark-primary);
}

.impressum-col .company-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.impressum-col i {
    width: 20px;
    color: var(--dark-primary);
}

.impressum-col a {
    color: var(--dark-primary);
    text-decoration: underline;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.data-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
}

.data-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.data-value {
    font-weight: 600;
    color: var(--text-dark);
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.business-list li:last-child {
    border-bottom: none;
}

.business-list li i {
    color: var(--gold-dark);
    margin-top: 4px;
}

.bank-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.bank-info p {
    margin: 8px 0;
}

.bank-label {
    display: inline-block;
    width: 60px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.legal-section h2 i {
    color: var(--gold-dark);
}

.legal-box h3 {
    color: var(--gold-dark);
    font-size: 1rem;
    margin: 20px 0 10px;
}

.legal-box h3:first-child {
    margin-top: 0;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 500;
}

.legal-link:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.last-updated {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== LOGO TRANSPARENT / OHNE RÄNDER ===== */
.logo-image {
    height: 75px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.05) brightness(1.02);
    background: transparent;
}

/* Alternative für besseren Blend */
.header .logo-image {
    mix-blend-mode: multiply;
}

/* ===== HERO MAIN SLOGAN ===== */
.hero-main-slogan {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse 2s infinite;
}

.hero-main-slogan i {
    color: var(--gold-light);
    font-size: 1.8rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@media (max-width: 768px) {
    .hero-main-slogan {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}

/* ===== GOOGLE MAPS SECTION ===== */
.map-section {
    padding: 80px 0;
    background: var(--beige-light);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    background: #fff;
    position: relative;
    min-height: 450px;
}

.map-consent {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
}

.map-consent-content {
    max-width: 600px;
    margin: 0 auto;
}

.map-consent-content i {
    font-size: 3.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.map-consent-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-consent-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-consent-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}

#mapFrame iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ===== RADIO GROUP FOR LIFT ===== */
.radio-group {
    display: flex;
    gap: 15px;
    padding: 12px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e5d4a8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-weight: 500;
}

.radio-option:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
}

.radio-option input[type="radio"] {
    accent-color: var(--gold-dark);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + span {
    color: var(--gold-dark);
    font-weight: 700;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--gold-dark);
    background: rgba(201, 169, 97, 0.1);
}

/* ===== OPENING HOURS - small text ===== */
.opening-hours ul li small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    margin-top: 2px;
}

/* ===== OPTIMIZED COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 580px;
    margin: 0 auto;
    background: #ffffff;
    color: var(--text-dark);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: none;
    border-top: 4px solid var(--gold);
    animation: slideUpCookie 0.5s ease-out;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner.show {
    display: block;
}

.cookie-banner h4 {
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: #faf7f0;
    border-radius: 12px;
    border: 1px solid #e5d4a8;
}

.cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookie-category-info small {
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--gold-dark);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--gold);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookie-decline {
    background: #f0f0f0;
    color: var(--text-dark);
    border: 1px solid #ddd;
}

.cookie-decline:hover {
    background: #e5e5e5;
}

.cookie-settings-btn {
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold);
}

.cookie-settings-btn:hover {
    background: var(--gold);
    color: white;
}

.cookie-details {
    display: none;
    margin-top: 15px;
}

.cookie-details.show {
    display: block;
}

.cookie-toggle-link {
    color: var(--gold-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* ===== IMAGE GALLERY FOR ÜBERSIEDLUNG ===== */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== TATORTREINIGUNG SLIDER ===== */
.tatort-slider {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    background: #1a1a1a;
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-img.active {
    opacity: 1;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 12px var(--gold);
}

.slider-dot:hover {
    background: var(--gold-light);
}

@media (max-width: 768px) {
    .gallery-main {
        height: 280px;
    }
    .gallery-thumbs img {
        height: 90px;
    }
}

/* ============================================================
   COLLAPSE SECTIONS (Bezirke / Städte)
============================================================ */
.collapse-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease;
}
.collapse-section.open {
    max-height: 4000px;
}

.collapse-toggle-wrap {
    text-align: center;
    margin: 18px 0 10px;
}

.collapse-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 9px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.collapse-toggle-btn:hover {
    background: var(--gold);
    color: #1a1a1a;
    transform: translateY(-1px);
}
.collapse-toggle-btn i {
    transition: transform 0.35s ease;
    font-size: 0.85rem;
}
.collapse-toggle-btn.open i {
    transform: rotate(180deg);
}
