/*
Theme Name: Tabak und Kioskshop
Theme URI: https://example.com/tabak-kioskshop
Author: Kioskshop
Author URI: https://example.com
Description: Professionelles WordPress Theme für Kiosk-Geschäfte mit Lotto, Western Union, Post, UPS und DPD Services.
Version: 1.2.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tabak-kioskshop
Tags: business, one-page, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ===== CSS Variables ===== */
:root {
    --color-amber-400: #fbbf24;
    --color-amber-500: #f59e0b;
    --color-amber-600: #d97706;
    --color-amber-700: #b45309;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-green-500: #22c55e;
    --color-yellow-500: #eab308;
    --color-cyan-500: #06b6d4;
    --color-emerald-500: #10b981;
    --color-pink-500: #ec4899;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--color-slate-700);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== Utilities ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--color-amber-500);
    color: white;
}

.btn-primary:hover {
    background: var(--color-amber-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-slate-300);
    color: var(--color-slate-700);
}

.btn-outline:hover {
    border-color: var(--color-amber-500);
    color: var(--color-amber-600);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .label {
    display: inline-block;
    color: var(--color-amber-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 1.5rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--color-slate-800);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item svg {
    color: var(--color-amber-400);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-main {
    padding: 1rem 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-slate-800);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.875rem;
    color: var(--color-amber-600);
    font-weight: 600;
}

.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-slate-600);
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: var(--color-amber-600);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber-500);
    transition: width 0.3s;
}

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

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-slate-700);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .main-nav, .header-cta {
        display: block;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-slate-50), white, #fffbeb);
}

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

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-decoration-1 {
    top: 10rem;
    right: 2rem;
    width: 18rem;
    height: 18rem;
    background: #fde68a;
    opacity: 0.3;
}

.hero-decoration-2 {
    bottom: 5rem;
    left: 2rem;
    width: 24rem;
    height: 24rem;
    background: var(--color-slate-200);
    opacity: 0.4;
}

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

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: var(--color-amber-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    color: var(--color-amber-500);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-green-500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-visual {
    position: relative;
}

.services-preview {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.services-preview:hover {
    transform: rotate(0deg);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.service-preview-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--color-slate-50);
    border-radius: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.service-preview-item:active {
    transform: scale(0.95);
}

.service-preview-item:hover {
    background: #fffbeb;
    transform: scale(1.05);
}

.service-preview-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-preview-item span {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-slate-700);
}

.hero-badge-float {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--color-amber-500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-visual-bg {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #fde68a, #fef3c7);
    border-radius: 1.5rem;
    z-index: -1;
    transform: rotate(-3deg);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

/* ===== Services Section ===== */
.services-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--color-slate-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.services-section .container {
    position: relative;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    border-color: #fef3c7;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--color-amber-600);
}

.service-card p {
    color: var(--color-slate-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-slate-50);
    border-radius: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--color-slate-600);
}

.service-features li svg {
    color: var(--color-amber-500);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Products Section ===== */
.products-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, var(--color-slate-50));
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-cyan-500), var(--color-emerald-500), var(--color-pink-500));
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.product-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--color-slate-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.products-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Opening Hours Section ===== */
.hours-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-slate-50), white);
    position: relative;
    overflow: hidden;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-amber-400), var(--color-amber-500), var(--color-amber-400));
}

.hours-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hours-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 1.5rem;
}

.hours-content h2 span {
    color: var(--color-amber-500);
}

.hours-content p {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid;
}

.status-badge.open {
    background: #dcfce7;
    border-color: #86efac;
}

.status-badge.closed {
    background: #fee2e2;
    border-color: #fca5a5;
}

.status-badge h4 {
    font-weight: 700;
}

.status-badge.open h4 {
    color: #15803d;
}

.status-badge.closed h4 {
    color: #b91c1c;
}

.status-badge p {
    font-size: 0.875rem;
    margin: 0;
}

.status-badge.open p {
    color: #16a34a;
}

.status-badge.closed p,
.status-badge.temp-closed p,
.status-badge.special-closed p {
    color: #dc2626;
}

/* Closure Banners */
.closure-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.closure-banner.temp-closure {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.closure-banner.special-closure {
    background: #fffbeb;
    border: 2px solid #fde68a;
}

.closure-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.temp-closure .closure-icon {
    background: #fee2e2;
    color: #dc2626;
}

.special-closure .closure-icon {
    background: #fef3c7;
    color: #d97706;
}

.closure-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.temp-closure .closure-content h3 {
    color: #991b1b;
}

.special-closure .closure-content h3 {
    color: #92400e;
}

.closure-content p {
    margin: 0;
}

.temp-closure .closure-content p {
    color: #b91c1c;
}

.special-closure .closure-content p {
    color: #b45309;
}

.closure-dates {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 500;
}

/* Special Days List */
.special-days-list {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.special-days-list h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.special-day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.special-day-item:last-child {
    border-bottom: none;
}

.special-day-name {
    font-size: 0.875rem;
    color: #475569;
}

.special-day-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
}

.hours-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hours-card-header {
    background: linear-gradient(to right, var(--color-slate-800), var(--color-slate-700));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.hours-card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-amber-500);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.hours-card-header span {
    font-size: 0.875rem;
    color: var(--color-slate-300);
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-slate-100);
    transition: background 0.2s;
}

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

.hours-item:hover {
    background: var(--color-slate-50);
}

.hours-item.today {
    background: #fffbeb;
}

.hours-item-day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.today-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-amber-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hours-item.today .day-name {
    color: var(--color-amber-700);
    font-weight: 600;
}

.today-badge {
    font-size: 0.75rem;
    background: #fde68a;
    color: var(--color-amber-700);
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 500;
}

.hours-item .hours {
    font-weight: 600;
    color: var(--color-slate-600);
}

.hours-item.today .hours {
    color: var(--color-amber-600);
}

.hours-item .hours.closed {
    color: var(--color-red-500);
}

@media (min-width: 1024px) {
    .hours-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #fde68a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber-600);
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background: var(--color-amber-500);
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-info label {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.contact-info p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-slate-800);
}

.contact-action {
    color: var(--color-amber-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.contact-action:hover {
    color: var(--color-amber-700);
}

.quick-contact {
    background: linear-gradient(to right, var(--color-slate-800), var(--color-slate-700));
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
}

.quick-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact p {
    color: var(--color-slate-300);
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-contact .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.quick-contact .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 400px;
}

.map-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-label h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.map-label span {
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(30%);
    transition: filter 0.5s;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-open-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #1e293b;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}

.map-open-link:hover {
    background: #f59e0b;
}

/* Map Link Box - Klickbar zu Google Maps */
.map-link-box {
    display: block;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 280px;
}

.map-link-box:hover {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
}

.map-link-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.map-link-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.map-link-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.map-link-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.map-link-action {
    text-align: center;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f59e0b;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.map-link-box:hover .map-link-btn {
    background: #d97706;
    transform: scale(1.02);
}

.map-link-hint {
    display: block;
    margin-top: 0.75rem;
    color: #94a3b8;
    font-size: 0.8rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-slate-900);
    background: #0f172a;
    color: white;
}

/* Footer Logo - muss weiß sein im dunklen Footer */
.site-footer .logo-text h1 {
    color: white !important;
}

.site-footer .logo-text span {
    color: #fbbf24 !important;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-brand p {
    color: var(--color-slate-400);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-slate-400);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-slate-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-amber-400);
}

.footer-links a svg {
    transition: transform 0.2s;
}

.footer-links a:hover svg {
    transform: translateX(4px);
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact a, .footer-contact span {
    color: var(--color-slate-400);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--color-amber-400);
}

.footer-contact svg {
    color: var(--color-amber-500);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-slate-800);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-slate-500);
    font-size: 0.875rem;
}

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

.footer-legal a {
    color: var(--color-slate-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-amber-400);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* ===== Legal Pages ===== */
.legal-page {
    padding-top: 6rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-page-body {
    background: #f8fafc;
}

.legal-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.legal-header .site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-header .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.legal-header .logo-text h1 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
}

.legal-header .logo-text span {
    font-size: 0.8rem;
    color: #d97706;
    font-weight: 600;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.back-link:hover {
    color: #f59e0b;
    background: #fffbeb;
}

.legal-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.legal-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

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

.legal-title-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.legal-title h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
}

.legal-title p {
    color: #64748b;
    font-size: 0.875rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2 svg {
    color: #f59e0b;
}

.legal-box {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.legal-box p {
    color: #475569;
    line-height: 1.7;
}

.legal-box strong {
    color: #1e293b;
}

.legal-box ul {
    color: #475569;
}

.legal-box.highlight {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.legal-box.highlight p {
    color: #334155;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 6rem 1rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid var(--color-slate-100);
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-weight: 500;
    color: var(--color-slate-700);
}

.mobile-menu a:hover {
    color: var(--color-amber-600);
}


/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--color-amber-500);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.announcement-link {
    color: white;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    transition: opacity 0.2s;
    text-align: center;
}

.announcement-link:hover {
    opacity: 0.9;
}

.announcement-text {
    color: white;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== Jobs Section ===== */
.jobs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, white 50%, #faf5ff 100%);
    position: relative;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #8b5cf6, #a78bfa, #8b5cf6);
}

.jobs-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.job-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: #ddd6fe;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.job-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 0.25rem;
}

.job-type {
    font-size: 0.875rem;
    color: #8b5cf6;
    font-weight: 500;
}

.job-description {
    color: var(--color-slate-600);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.job-apply-btn:hover {
    color: #7c3aed;
}

.job-apply-btn svg {
    transition: transform 0.2s;
}

.job-apply-btn:hover svg {
    transform: translateX(4px);
}

.jobs-cta {
    background: linear-gradient(135deg, var(--color-slate-800), var(--color-slate-700));
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .jobs-cta {
        flex-direction: row;
        text-align: left;
    }
}

.jobs-cta-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    flex-shrink: 0;
}

.jobs-cta-content {
    flex: 1;
}

.jobs-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jobs-cta-content p {
    color: var(--color-slate-300);
    font-size: 0.9rem;
}

.jobs-info-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    text-align: center;
    margin-top: 2rem;
    color: #92400e;
    font-size: 0.95rem;
}

/* Jobs Section - Clean List Style */
.jobs-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.job-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.job-item-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.job-item-content {
    flex: 1;
    min-width: 0;
}

.job-item-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.job-item-type {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-item-content p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.job-item .btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

.jobs-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 640px) {
    .job-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .job-item-content h3 {
        font-size: 1rem;
    }
    
    .job-item .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.cookie-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-banner {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.cookie-main,
.cookie-settings {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-main,
    .cookie-settings {
        padding: 2rem;
    }
}

.cookie-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-icon {
    width: 3rem;
    height: 3rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 0.5rem;
}

.cookie-header p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    line-height: 1.5;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cookie-category {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.cookie-category.necessary {
    background: #f0fdf4;
}

.category-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-slate-700);
}

.cookie-category.necessary .category-name {
    color: #16a34a;
}

.category-status {
    font-size: 0.75rem;
    color: var(--color-slate-400);
}

.cookie-category.necessary .category-status {
    color: #22c55e;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cookie-buttons {
        flex-direction: row;
    }
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
}

.cookie-btn.outline {
    background: white;
    border: 1px solid #cbd5e1;
    color: var(--color-slate-700);
}

.cookie-btn.outline:hover {
    background: #f8fafc;
}

.cookie-btn.primary {
    background: var(--color-amber-500);
    color: white;
}

.cookie-btn.primary:hover {
    background: var(--color-amber-600);
}

.cookie-btn.full-width {
    width: 100%;
}

.cookie-info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #dcfce7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cookie-info-box h3 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 0.125rem;
}

.cookie-info-box p {
    font-size: 0.8rem;
    color: #15803d;
    margin: 0;
}

.cookie-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.cookie-links a {
    color: var(--color-amber-600);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cookie-links a:hover {
    color: var(--color-amber-700);
}

/* Cookie Settings Panel */
.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cookie-settings-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.cookie-close {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-slate-500);
    border-radius: 0.5rem;
}

.cookie-close:hover {
    background: #f1f5f9;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.cookie-option.necessary {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-option-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-option-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cookie-option.necessary .cookie-option-icon {
    background: #dcfce7;
}

.cookie-option h3 {


/* ===== SAMSUNG FOLD & SMALL SCREEN RESPONSIVE ===== */

/* Extra small screens (Samsung Fold front display: 280-373px) */
@media (max-width: 380px) {
    /* Announcement Bar */
    .announcement-bar {
        padding: 0.5rem 0.5rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .announcement-bar .container {
        padding: 0 0.25rem;
    }
    
    .announcement-text,
    .announcement-link {
        font-size: 0.7rem;
    }
    
    /* Top Bar */
    .top-bar {
        font-size: 0.7rem;
        padding: 0.375rem 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .top-bar-item {
        font-size: 0.65rem;
    }
    
    .top-bar-item svg {
        width: 12px;
        height: 12px;
    }
    
    /* Header */
    .header-main {
        padding: 0.5rem 0;
    }
    
    .site-logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .logo-text h1 {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-title span {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.7rem;
    }
    
    /* Services Preview (Hero tiles) */
    .services-preview {
        display: none;
    }
    
    /* Section titles */
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.85rem;
    }
    
    /* Service cards */
    .service-card,
    .product-card {
        padding: 1rem;
    }
    
    .service-icon,
    .product-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .service-card h3,
    .product-card h3 {
        font-size: 1rem;
    }
    
    .service-card p,
    .product-card p {
        font-size: 0.8rem;
    }
    
    /* Hours section */
    .hours-content h2 {
        font-size: 1.5rem;
    }
    
    .status-badge {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hours-card-header {
        padding: 1rem;
    }
    
    .hours-card-header h3 {
        font-size: 1rem;
    }
    
    .hours-item {
        padding: 0.75rem 1rem;
    }
    
    .hours-item .day-name {
        font-size: 0.8rem;
    }
    
    .hours-item .hours {
        font-size: 0.75rem;
    }
    
    /* Contact */
    .contact-card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 0.5rem;
    }
    
    .contact-action {
        margin-top: 0.5rem;
    }
    
    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-brand .site-logo {
        justify-content: center;
    }
    
    .footer-col h4 {
        font-size: 0.9rem;
    }
    
    .footer-links li a,
    .footer-contact li a,
    .footer-contact li span {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Cookie banner */
    .cookie-banner {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 0.75rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .cookie-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cookie-header h2 {
        font-size: 1rem;
    }
    
    .cookie-header p {
        font-size: 0.75rem;
    }
    
    .cookie-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Legal pages */
    .legal-content {
        padding: 0.5rem;
    }
    
    .legal-card {
        padding: 1rem;
    }
    
    .legal-title h1 {
        font-size: 1.25rem;
    }
    
    .legal-section h2 {
        font-size: 1rem;
    }
    
    .legal-box {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* Small screens (373px - 480px) */
@media (min-width: 381px) and (max-width: 480px) {
    .hero-section {
        padding-top: 10rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title span {
        font-size: 1.5rem;
    }
    
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .service-preview-item {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .service-preview-icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
}

/* Medium-small screens (481px - 767px) - Tablet portrait / Fold unfolded */
@media (min-width: 481px) and (max-width: 767px) {
    .services-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-preview-item span {
        font-size: 0.75rem;
    }
}

/* Tablet landscape / Fold landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
}

/* Fold-specific: Unfolded landscape mode */
@media (min-width: 1000px) and (max-width: 1200px) and (max-height: 950px) {
    .hero-section {
        min-height: auto;
        padding-top: 10rem;
        padding-bottom: 3rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
}

/* Mobile menu improvements for small screens */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem;
    }
    
    .mobile-menu ul li a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Jobs section responsive */
@media (max-width: 480px) {
    .jobs-section {
        padding: 3rem 0;
    }
    
    .jobs-grid {
        gap: 1rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .job-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .job-icon {
        margin: 0 auto;
    }
    
    .job-card h3 {
        font-size: 1rem;
    }
    
    .jobs-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .jobs-cta-icon {
        margin: 0 auto;
    }
}

/* Closure banners responsive */
@media (max-width: 480px) {
    .closure-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .closure-icon {
        margin: 0 auto 0.75rem;
    }
}

/* Products badges responsive */
@media (max-width: 480px) {
    .products-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .product-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Map container responsive */
@media (max-width: 480px) {
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px !important;
    }
    
    .map-label {
        font-size: 0.8rem;
    }
    
    .map-label h4 {
        font-size: 0.85rem;
    }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .btn,
    .mobile-menu ul li a,
    .footer-links a,
    .contact-action,
    .job-apply-btn {
        min-height: 44px;
    }
    
    .service-preview-item {
        min-height: 44px;
    }
}

/* Prevent horizontal overflow on all screens */
html, body {
    overflow-x: hidden;
}

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

    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-slate-800);
    margin-bottom: 0.125rem;
}

.required-badge {
    font-size: 0.75rem;
    background: #22c55e;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.optional-badge {
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

.cookie-option p {
    font-size: 0.8rem;
    color: var(--color-slate-600);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 2.75rem;
    height: 1.5rem;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 9999px;
    transition: 0.3s;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 1.25rem;
    width: 1.25rem;
    left: 0.125rem;
    bottom: 0.125rem;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

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

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

.cookie-info-text {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--color-slate-500);
    text-align: center;
}

.cookie-info-text a {
    color: var(--color-amber-600);
}

.cookie-info-text a:hover {
    text-decoration: underline;
}
