:root {
    --primary-color: #0f172a;
    /* Dark Navy */
    --secondary-color: #334155;
    /* Slate */
    --accent-color: #ef4444;
    /* Vibrant Red */
    --accent-hover: #dc2626;
    --text-color: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Specific overrides for consistent elements */
    --hero-text: #ffffff;
    --footer-bg: #0f172a;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #f1f5f9; /* Light text for headers */
    --secondary-color: #cbd5e1; /* Light slate for subtext */
    --text-color: #e2e8f0; /* Main text light */
    --light-bg: #1e293b; /* Dark Slate for sections */
    --white: #0f172a; /* Dark Navy for Main BG & Cards */
    
    /* Keep accent same or adjust if needed */
    --accent-color: #ef4444;
    
    --footer-bg: #020617; /* Even darker for footer */
}

html {
    scroll-behavior: smooth;
}

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

/* Prevent scrolling when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography */
h1,
h2,
h3 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-padding {
    padding: 5rem 0;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-left: 1rem;
    position: relative;
    z-index: 10;
}

.theme-toggle:hover {
    background-color: var(--secondary-color);
    color: var(--white); /* In dark mode this swaps correctly */
}

[data-theme="dark"] .theme-toggle {
    border-color: #cbd5e1;
    color: #cbd5e1;
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: #cbd5e1;
    color: #0f172a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #2563eb; /* Fixed Blue */
    color: #ffffff; /* Always white text */
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0f172a;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
}

/* Dual Logo Logic - No Flicker */
.logo-light {
    height: 50px;
    display: block;
}

.logo-dark {
    height: 95px;
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    /* Updated to local asset */
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--hero-text);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--hero-text);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1; /* Always light grey */
    margin-bottom: 1.5rem; 
    max-width: 750px; 
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-trust {
    font-size: 1.1rem;
    color: var(--hero-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Hero Hotline Block */
.hero-hotline {
    margin-top: 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    /* Dark semi-transparent */
    backdrop-filter: blur(4px);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    max-width: 90%;
}

.hero-hotline p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-weight: 600;
}

.hotline-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.phone-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.phone-display i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.phone-display:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.phone-display span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
    margin-left: 0.3rem;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    /* In dark mode, white becomes dark, providing contrast against light-bg */
    background-color: var(--white); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

.reviews-track-container {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 0 0 100%; /* Default mobile: 1 slide visible */
    /* Adjust flex-basis in media queries for more slides */
}

.stars {
    color: #fbbf24;
    /* Amber */
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white); /* This white is background in dark mode, wait. */
}
/* Fix slider btn hover in dark mode */
[data-theme="dark"] .slider-btn:hover {
    color: #0f172a; /* Dark text on light hover */
}


.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Slider Configuration */
@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 10px); /* 2 slides visible, accounting for gap */
    }
}

/* Blog Section Styles */
.blog-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid #cbd5e1;
}

/* Adjust blog hero for dark mode */
[data-theme="dark"] .blog-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom-color: #334155;
}

.blog-hero h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .blog-card {
    border-color: #334155;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

/* Image Placeholders with Gradients */
.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.blog-card:hover .blog-image-placeholder {
    transform: scale(1.05);
}

.gradient-1 { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); } /* Blue */
.gradient-2 { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); } /* Red/Accent */
.gradient-3 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); } /* Green */
.gradient-4 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); } /* Amber */

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-tag {
    background-color: #f1f5f9;
    color: #334155; /* Fixed color */
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .blog-tag {
    background-color: #334155;
    color: #f1f5f9;
}

.blog-tag.highlight {
    background-color: #fef2f2;
    color: var(--accent-color);
}
[data-theme="dark"] .blog-tag.highlight {
    background-color: #450a0a;
}

.blog-date {
    color: var(--secondary-color);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.8rem; /* Arrow movement effect */
    color: var(--accent-hover);
}

/* Responsive adjustment for blog */
/* Single Blog Post Styles */
.post-container {
    max-width: 800px; /* Narrower container for reading comfort */
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.post-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.post-header .blog-tag {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.post-header .post-date {
    display: block;
    color: #94a3b8;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.post-body h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.post-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

/* Promo Box inside Article */
.promo-box {
    background-color: var(--light-bg);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}
[data-theme="dark"] .promo-box {
    border-color: #334155;
}

.promo-box h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.promo-box p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Location Page Styles */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f1f5f9;
}
[data-theme="dark"] .info-card {
    border-color: #334155;
}

.info-card.mt-4 {
    margin-top: 2rem;
}

.icon-large {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.address-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Navigation Button - Mobile optimized */
.btn-navigate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #2563eb; /* Google Blueish */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-navigate:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
}

.small-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.8rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
}
[data-theme="dark"] .hours-list li {
    border-bottom-color: #334155;
}

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

.closed {
    color: var(--accent-color);
    font-weight: 600;
}

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

    .map-container {
        height: auto; /* Allow image to define height */
        /* order removed to keep HTML flow (Info first, then Map) */
    }
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    list-style: none;
    margin: 2rem 0;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--accent-color);
    width: 24px;
    margin-top: 5px;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
[data-theme="dark"] .contact-form {
    border-color: #334155;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-color);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    border-color: #475569;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    color: #10b981;
    display: block;
}

.form-message.error {
    color: var(--accent-color);
    display: block;
}

.map-mockup {
    background-color: #e2e8f0;
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.map-mockup i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

/* Catalog & Service Styles */
.catalog-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.catalog-list li {
    margin-bottom: 0.5rem;
}

.catalog-list a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.catalog-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Marketplace / External Offers Section */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.market-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.market-card.compact {
    padding: 2rem 1.5rem; /* Smaller padding for catalog page */
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Allegro Style */
.allegro-card {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7833 100%);
}

.allegro-card h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    font-family: sans-serif; /* Mimic branding */
}

.market-card.compact h3 {
    font-size: 2rem; /* Smaller font for compact version */
}

/* OLX Style */
.olx-card {
    background: linear-gradient(135deg, #002f34 0%, #00464d 100%);
}

.olx-card h3 {
    color: #23e5db; /* OLX Teal Accent */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
}

.market-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.market-card.compact .market-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-market-action {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.market-card:hover .btn-market-action {
    background: #ffffff;
}

.allegro-card:hover .btn-market-action {
    color: #ff5a00;
}

.olx-card:hover .btn-market-action {
    color: #002f34;
}

/* Direct Offer Alert Box - Elegant Version */
.direct-offer-alert {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .direct-offer-alert {
    border-color: #334155;
}

.direct-offer-alert p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.highlight-price {
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.page-header {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

/* --- PREMIUM CONTACT STYLES (Moved from kontakt.html) --- */
.contact-grid-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-grid-page {
        grid-template-columns: 1fr 1.5fr; /* Info smaller, Map larger */
        align-items: stretch;
    }
}

.contact-card-premium {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-theme="dark"] .contact-card-premium {
    border-color: #334155;
    background-color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

[data-theme="dark"] .contact-item {
    border-bottom-color: #334155;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon-wrapper {
    background-color: #f8fafc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-icon-wrapper {
    background-color: #1e293b;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p, .contact-text a {
    font-size: 1.05rem;
    color: var(--secondary-color);
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

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

.hours-table {
    width: 100%;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hours-table td {
    padding: 4px 0;
    color: var(--secondary-color);
}

.hours-table td:first-child {
    font-weight: 600;
    width: 100px;
}

.map-frame-premium {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 500px;
}

/* Lightbox Styles for Image Zoom */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:hover {
    opacity: 0.95;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    [data-theme="dark"] .hamburger .bar {
        background-color: var(--text-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px; /* Below navbar */
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }
    
    .navbar .nav-buttons {
        display: flex;
    }
    
    .navbar .nav-buttons .btn {
        display: none; /* Hide the big phone button on mobile */
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}