/* Luxury Munich Theme */
/* REPLACED: @import url('https://fonts.googleapis.com...'); */

/* Local Font Definitions (Speed & Privacy) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    size-adjust: 100%;
    ascent-override: 90%;
    src: url('../fonts/Manrope-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    size-adjust: 100%;
    ascent-override: 90%;
    src: url('../fonts/Manrope-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    size-adjust: 100%;
    ascent-override: 90%;
    src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2');
}

:root {
    /* Premium Palette */
    --primary-dark: #0f172a;
    /* Very dark blue/slate (Serious, High-end) */
    --primary-blue: #1e3a8a;
    /* Rich Munich Blue */
    --accent-gold: #c29d59;
    /* Muted Gold (Wealth not tackiness) */
    --accent-gold-hover: #d4af37;
    --bg-light: #ffffff;
    --text-main: #1a1a2e;
    --text-dark: #0f172a;
    --white: #ffffff;

    /* Spacing & UI */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* Reverted shadow */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --radius-lg: 12px;
    /* Reverted radius */
    --radius-sm: 6px;

    /* Accessibility: Darker gold for text on white backgrounds (WCAG AA) */
    --accent-gold-text: #8a6d30;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

/* Live Status Badge */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-green::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(3); opacity: 0; }
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    /* Usage of Serif for luxury feel */
    color: var(--text-dark);
}

/* Infinite Brand Ticker */
.brand-ticker-wrap {
    background: var(--white); 
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.brand-ticker-wrap::before, .brand-ticker-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.brand-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.brand-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.ticker-track {
    display: flex;
    width: fit-content;
    animation: scroll-ticker 35s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem; /* match gap for seamless loop */
}

.ticker-item {
    font-size: 1.3rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color 0.3s;
}

.ticker-item:hover {
    color: var(--primary-blue);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header & Nav */
header {
    background-color: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.logo span {
    color: var(--primary-blue);
    font-style: italic;
}

/* Premium Navigation (Lexus Style) */
.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Bottom Nav (Gold Bar) Styling Fix */
.bottom-nav .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.2rem;
}

.bottom-nav .nav-links li {
    display: inline-flex;
    align-items: center;
}

.bottom-nav .nav-links a {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 8px;
    transition: opacity 0.3s ease;
}

.bottom-nav .nav-links a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .bottom-nav .nav-links {
        gap: 0.8rem;
    }
    .bottom-nav .nav-links a {
        font-size: 0.7rem;
    }
}

.desktop-nav a {
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--accent-gold);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b08d55 100%);
    color: var(--primary-dark);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background 0.4s ease;
    will-change: transform;
    box-shadow: 0 4px 15px rgba(194, 157, 89, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(194, 157, 89, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #c29d59 100%);
    color: var(--primary-dark);
}

.desktop-only {
    display: inline-block;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, #2a4365 0%, #0f172a 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    min-height: 480px;
    text-align: center;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    contain: layout style;
}

.hero h1 {
    font-size: 3.5rem;
    /* Larger, more imposing */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    /* Soft grey text */
    font-weight: 400;
}

/* Trust Signals */
.trust-signals-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    /* Glassmorphism */
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
}

.trust-pill:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Content Area */
.content-section {
    padding: 5rem 0;
}

article {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-top: -3rem;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.text-block {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 10px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Local Details - Elegant List */
.local-info {
    background-color: #fff;
    padding: 5rem 0;
    border-top: 1px solid #f1f5f9;
}

.local-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-top: 2rem;
}

.local-list li {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-main);
    border: 1px solid transparent;
}

.local-list li::before {
    content: '•';
    color: var(--accent-gold);
    margin-right: 8px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #0f172a;
    color: var(--white);
    padding: 100px 0 60px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* Modern Footer Tags */
.footer-tag-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Sticky Bar - Clean & Modern */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    margin: 0 5px;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sticky-btn.call {
    background: var(--primary-dark);
}

.sticky-btn.whatsapp {
    background: #25D366;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.sticky-btn.whatsapp {
    background: #25D366;
    color: var(--primary-dark);
}

/* Accessibility: Focus States */
:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

input:focus,
textarea:focus,
button:focus,
select:focus,
a:focus {
    outline: 2px solid var(--accent-gold);
}

/* Feedback UI */
.form-status {
    display: none;
    padding: 15px;
    margin-top: 15px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .desktop-only,
    .desktop-nav {
        display: none;
    }


    article {
        padding: 1.5rem;
        margin-top: -2rem;
    }
}

/* City Notice Section */
.city-notice {
    padding: 2.5rem 0;
    text-align: center;
    background-color: var(--bg-light);
    border-top: 1px solid #e2e8f0;
    color: var(--text-main);
}

.city-notice p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.city-notice a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.city-notice a:hover {
    color: var(--accent-gold-text);
    border-bottom-color: var(--accent-gold);
}

/* Form Header Image */
.form-header-container {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.form-header-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* District Grid Premium Buttons */
.district-link {
    display: block;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.district-link:hover {
    background: var(--primary-dark);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-dark);
}

/* Testimonials Styles */
.testimonial-card {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    text-align: left;
}

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

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-card .author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: auto;
}

.testimonial-card .author h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper {
    padding-bottom: 3rem !important;
    /* Space for pagination */
}

/* Equal-height Swiper slides */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

/* FAQ Section */
.faq-section {
    border-top: 1px solid #f1f5f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    background: var(--white);
}

.faq-question::after {
    content: '+';
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-main);
    line-height: 1.6;
}

/* Brand Image Section (Under Hero) */
.brand-image-section {
    padding: 0;
    text-align: center;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.brand-image-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.brand-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.brand-image:hover {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .brand-image-section {
        padding: 0;
    }
}

/* SEO Text Section */
.seo-text-section {
    border-top: 1px solid #e2e8f0;
}

.seo-text-content {
    max-width: 860px;
    margin: 0 auto;
}

.seo-text-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.seo-text-content h2:first-child {
    margin-top: 0;
}

.seo-text-content h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--primary-blue);
}

.seo-text-content p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.seo-text-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.seo-text-content ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.seo-text-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background-color: var(--white);
    border-bottom: 1px solid #e2e8f0;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #64748b;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    margin-right: 0.3rem;
    color: #94a3b8;
    font-size: 1rem;
}

.breadcrumb-item:last-child {
    color: var(--text-main);
    font-weight: 600;
}

/* --- New Premium UI Enhancements --- */

/* Star Rating Utility */
.star-rating {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.star-rating svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Enhanced Form Design - 2026 Premium Glassmorphism */
.modern-form {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    border-radius: 24px !important;
    padding: 2.5rem !important;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
    display: block;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--primary-dark);
    font-weight: 600;
    padding-left: 48px !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Icon Wrapper & Field Icons */
.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.form-group input:focus+.field-icon,
.form-group select:focus+.field-icon,
.form-group textarea:focus+.field-icon {
    color: var(--primary-dark);
    opacity: 1;
    transform: scale(1.1);
}

.form-group input::placeholder {
    color: #64748b;
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-gold) !important;
    box-shadow: 0 10px 25px -5px rgba(194, 157, 89, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b08d55 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px -10px rgba(194, 157, 89, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(194, 157, 89, 0.6);
    background-position: right center;
    color: var(--primary-dark);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Testimonial Card Polish */
.testimonial-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(194, 157, 89, 0.1);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(194, 157, 89, 0.05);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(194, 157, 89, 0.3);
}

.testimonial-card .star-rating {
    margin-bottom: 1.2rem;
    gap: 3px;
}

.testimonial-card .star-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.testimonial-card .author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.testimonial-card .author-info span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* --- Premium Stats Bar --- */
.stats-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(194, 157, 89, 0.3);
    border-bottom: 4px solid var(--accent-gold);
    margin-top: 0;
    position: relative;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.stats-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(194, 157, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stats-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.stats-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stats-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* --- Comparison Table: Privat vs. Wir --- */
.comparison-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.comp-head {
    padding: 2.5rem 2rem;
    background: #f8fafc;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-dark);
    text-align: center;
}

.comp-head.wir {
    background: var(--primary-dark);
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.comp-row {
    display: contents;
}

.comp-cell {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.comp-cell.feature-name {
    justify-content: flex-start;
    font-weight: 800;
    color: var(--primary-dark);
}

.comp-cell.wir {
    background: rgba(194, 157, 89, 0.03);
    font-weight: 700;
    border-left: 1px solid rgba(194, 157, 89, 0.1);
    border-right: 1px solid rgba(194, 157, 89, 0.1);
}

/* --- Modern Glassmorphism Accordion --- */
.premium-faq-section {
    padding: 8rem 0;
    background: #ffffff;
}

.glass-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.accordion-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 2.2rem 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    padding: 0 2.8rem;
}

.accordion-item.active .accordion-body {
    max-height: 600px;
    padding-bottom: 2.2rem;
}

/* --- Sticky Mobile Footer --- */
.sticky-mobile-nav {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 450px;
    background: rgba(9, 14, 26, 0.88);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 0.6rem;
    border-radius: 100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUpContact 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpContact {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 768px) {
    .sticky-mobile-nav {
        display: grid;
    }
}

.mobile-cta-btn {
    padding: 0.85rem;
    border-radius: 100px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn.gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.mobile-cta-btn.dark {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: var(--white);
}

.mobile-cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.mobile-cta-btn:active {
    transform: scale(0.92);
}

.mobile-cta-btn svg {
    width: 22px !important;
    height: 22px !important;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comp-cell,
    .comp-head {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* --- Premium Glassmorphism Contact Form 2026 --- */
.contact-section-2026 {
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.05) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section-2026::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(194, 157, 89, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.glass-card {
    background: #f1f5f9; /* Darkened from rgba(255, 255, 255, 0.7) for better field visibility */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.dark-mode .glass-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-form-title {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-form-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.premium-form-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.premium-input-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.premium-input-wrapper label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.premium-input-wrapper input,
.premium-input-wrapper select,
.premium-input-wrapper textarea {
    width: 100%;
    padding: 1.1rem 1.1rem 1.1rem 3rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    background: #ffffff; /* Solid white for high contrast on darker card */
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-input-wrapper input:focus,
.premium-input-wrapper select:focus,
.premium-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(194, 157, 89, 0.15);
    transform: translateY(-2px);
}

.field-icon-premium {
    position: absolute;
    left: 1.1rem;
    top: calc(1.1rem + 1.4rem);
    /* Offset because of label */
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    pointer-events: none;
}

.premium-input-wrapper textarea+.field-icon-premium {
    top: 2.5rem;
}

.spam-protection-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(194, 157, 89, 0.05);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.spam-label {
    font-weight: 800;
    color: var(--accent-gold);
    white-space: nowrap;
}

.spam-input {
    width: 80px !important;
    padding: 0.8rem !important;
    text-align: center;
}

.premium-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: var(--white);
    border: none;
    padding: 1.4rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.premium-submit-btn:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    background: linear-gradient(135deg, #1e293b 0%, var(--primary-dark) 100%);
}

.premium-submit-btn span {
    font-size: 1.4rem;
}

.form-trust-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

@media (max-width: 768px) {
    .contact-section-2026 {
        padding: 5rem 0;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .form-grid-2026 {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .premium-form-title h2 {
        font-size: 1.8rem;
    }

    .form-trust-elements {
    flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}

/* --- Modern Interactive Glass Cards (Warum wir?) --- */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: rotate(0deg) scale(1.1);
}

.feature-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: var(--white);
    transform: rotate(-45deg);
    transition: transform 0.5s ease;
}

.feature-card-modern:hover .feature-icon-wrapper svg {
    transform: rotate(0deg);
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card-modern p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* --- E-E-A-T Section --- */
.eeat-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.eeat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eeat-content {
    padding-right: 2rem;
}

.eeat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eeat-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.eeat-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.eeat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.eeat-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.eeat-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.eeat-feature-text h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.eeat-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.eeat-visual {
    position: relative;
}

.eeat-expert-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.eeat-expert-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 2rem;
    font-weight: 700;
}

.expert-info h3 {
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.expert-info p {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.expert-certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cert-item svg {
    color: #10b981;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cert-item span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .eeat-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .eeat-content {
        padding-right: 0;
    }
}
@media (max-width: 576px) {
    .eeat-features {
        grid-template-columns: 1fr;
    }
}