/* 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: swap;
    src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
}

: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: #f8fafc;
    --text-main: #334155;
    --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.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* 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;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    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);
    /* High contrast for Accessibility */
    padding: 0.8rem 2rem;
    border-radius: 50px;
    /* Pill shape for modern feel */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 157, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 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;
    text-align: center;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.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;
}

.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: all 0.3s ease;
}

.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-color: var(--primary-dark);
    color: #94a3b8;
    padding: 4rem 0 6rem;
    /* Extra space for sticky bar */
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent-gold);
}

/* 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);
}

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

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

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

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

    .mobile-sticky-bar {
        display: flex;
    }

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

/* 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: all 0.3s ease;
}

.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: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    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 */
}