/* ────────────────────────────────────────────────
   Elektro Günther – Haupt-Stylesheet
   ──────────────────────────────────────────────── */

:root {
    --primary:       #b91c1c;
    --primary-dark:  #991b1b;
    --dark:          #1c0f0f;
    --dark2:         #0e0808;
    --light:         #fdf2f2;
    --text:          #334155;
    --text-light:    #64748b;
    --white:         #ffffff;
    --border:        #e8d8d8;
    --success:       #16a34a;
    --error:         #dc2626;
    --transition:    all 0.3s ease;
    --radius:        8px;
    --shadow:        0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg:     0 10px 25px -5px rgba(0,0,0,0.15);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text); background: var(--white); animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Layout */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light); }
.text-center { text-align: center; }
.subtitle { max-width: 700px; margin: -20px auto 40px; font-size: 1.1rem; color: var(--text-light); }
.page-content { min-height: calc(100vh - 160px); padding-top: 80px; }

/* Section Title */
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--dark); }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 10px auto 0; border-radius: 2px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; background: var(--primary); color: var(--white); font-weight: 700; border-radius: var(--radius); border: 2px solid var(--primary); cursor: pointer; transition: var(--transition); font-size: 1rem; text-decoration: none; }
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.btn-large { padding: 15px 35px; font-size: 1.05rem; }

/* Header / Nav */
header { background: var(--dark); position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.25); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo a { color: var(--white); font-size: 1.4rem; font-weight: 700; text-decoration: none; }
.logo a i { color: var(--primary); margin-right: 6px; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { color: #cbd5e1; padding: 8px 12px; font-weight: 500; font-size: 0.92rem; transition: var(--transition); border-radius: 4px; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary); background: rgba(185,28,28,0.10); }
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background: var(--white); margin: 5px; transition: var(--transition); }

/* Hero */
.hero { background: linear-gradient(135deg,rgba(15,23,42,0.92) 0%,rgba(30,41,59,0.88) 100%), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1400&q=80') no-repeat center/cover; min-height: 80vh; display: flex; align-items: center; color: var(--white); }
.hero-inner { text-align: center; }
.hero-badge { display: inline-block; background: rgba(185,28,28,0.15); border: 1px solid var(--primary); color: var(--primary); padding: 6px 18px; border-radius: 20px; font-size: 0.9rem; margin-bottom: 20px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 35px; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* USP Bar */
.usp-bar { background: var(--primary); padding: 18px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.usp-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* Page Hero */
.page-hero { background: linear-gradient(135deg,var(--dark2) 0%,var(--dark) 100%); padding: 60px 0 50px; color: var(--white); text-align: center; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.page-hero h1 i { color: var(--primary); margin-right: 10px; }
.page-hero p { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* Grids */
.grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(420px,1fr)); gap: 40px; }

/* Cards */
.card { background: var(--white); padding: 32px 28px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; transition: var(--transition); border-top: 4px solid transparent; }
.card:hover { transform: translateY(-6px); border-top-color: var(--primary); box-shadow: var(--shadow-lg); }
.card i { font-size: 2.8rem; color: var(--primary); margin-bottom: 18px; }
.card h3 { margin-bottom: 12px; color: var(--dark); font-size: 1.15rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-top: 12px; }

/* Info Boxes */
.info-box { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-box h3 { margin-bottom: 15px; color: var(--dark); }
.info-box h3 i { color: var(--primary); margin-right: 8px; }
.list-style li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.list-style li::before { content: '✓ '; color: var(--primary); font-weight: 700; }

/* Service Detail */
.service-detail { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-icon { font-size: 4rem; color: var(--primary); width: 80px; text-align: center; padding-top: 8px; }
.service-detail-text h2 { font-size: 1.8rem; color: var(--dark); margin-bottom: 15px; }

/* CTA */
.bg-dark-section { background: var(--dark); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-inner p { color: #94a3b8; max-width: 550px; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); }
.stat-number { display: block; font-size: 2.8rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: var(--text-light); }

/* Contact */
.contact-info h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.contact-detail i { color: var(--primary); margin-top: 3px; width: 18px; flex-shrink: 0; }
.map-placeholder { margin-top: 30px; background: var(--light); border: 2px dashed var(--border); border-radius: var(--radius); height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); gap: 8px; }
.map-placeholder i { font-size: 2rem; color: var(--primary); }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--dark); font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(185,28,28,0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row .full-width { grid-column: 1 / -1; }
.required-star { color: var(--error); }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 8px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.checkbox-group .checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 3px; cursor: pointer; }

/* Antrag Form */
.form-intro { background: var(--light); border-left: 4px solid var(--primary); padding: 14px 20px; margin-bottom: 30px; border-radius: 0 var(--radius) var(--radius) 0; }
.antrag-form .form-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 24px; box-shadow: var(--shadow); }
.antrag-form .form-section h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.form-step { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--primary); color: var(--dark); font-weight: 800; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; }

/* Preise */
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--dark); color: var(--white); font-weight: 600; }
.price-table tr:hover td { background: var(--light); }
.price-col { color: var(--primary); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.price-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: var(--transition); }
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--primary); }
.price-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--dark); font-size: 0.8rem; font-weight: 700; padding: 3px 14px; border-radius: 12px; }
.price-card-header { text-align: center; margin-bottom: 24px; }
.price-card-header i { font-size: 2.5rem; color: var(--primary); margin-bottom: 12px; display: block; }
.price-card-header h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.price-tag { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.price-card ul { margin-bottom: 24px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.price-card ul li i { color: var(--success); }
.price-card .btn { width: 100%; text-align: center; }

/* Galerie */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--border); background: var(--white); color: var(--text); border-radius: 20px; cursor: pointer; font-size: 0.92rem; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); background: var(--primary); color: var(--dark); font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; opacity: 0; transition: opacity 0.3s ease; color: var(--white); padding: 16px; text-align: center; }
.gallery-overlay p { font-size: 0.95rem; font-weight: 600; }
.gallery-overlay i { font-size: 2rem; color: var(--primary); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-overlay.active { display: flex; }
.lightbox-content { max-width: 80vw; text-align: center; }
.lightbox-content img { max-height: 75vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
#lightboxCaption { color: var(--white); margin-top: 14px; font-size: 1.05rem; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: fixed; background: rgba(185,28,28,0.85); border: none; color: var(--white); cursor: pointer; border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Alerts */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* Footer */
footer { background: var(--dark2); color: #94a3b8; border-top: 1px solid #1e293b; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding: 60px 0 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col h4 i { color: var(--primary); margin-right: 6px; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col .contact-detail { font-size: 0.88rem; gap: 8px; }
.footer-col .contact-detail a { color: #94a3b8; }
.footer-col .contact-detail a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 0; font-size: 0.85rem; text-align: center; }
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: var(--primary); }
.footer-powered { opacity: 0.65; font-size: 0.8rem; }
.footer-powered a { color: #64748b; }
.footer-powered a:hover { color: var(--primary); }
.cookie-reopen-btn { background:none; border:none; color:#94a3b8; cursor:pointer; font-size:.85rem; padding:0; text-decoration:underline; }
.cookie-reopen-btn:hover { color: var(--primary); }

/* Floating Action Buttons */
.floating-buttons { position:fixed; bottom:28px; right:22px; z-index:8000; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.fab-btn { display:flex; align-items:center; gap:10px; padding:12px 18px 12px 14px; border-radius:50px; color:#fff; text-decoration:none; font-weight:700; font-size:.95rem; box-shadow:0 4px 16px rgba(0,0,0,.25); transition:transform .2s, box-shadow .2s; white-space:nowrap; }
.fab-btn:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.3); }
.fab-btn i { font-size:1.2rem; }
.fab-phone { background:linear-gradient(135deg,#7f1d1d,#b91c1c); }
.fab-whatsapp { background:linear-gradient(135deg,#16a34a,#22c55e); }
.fab-label { font-size:.85rem; }

/* Cookie Banner */
.cookie-banner { position:fixed; bottom:0; left:0; right:0; z-index:9998; background:var(--dark); color:var(--white); box-shadow:0 -4px 24px rgba(0,0,0,.3); animation:slideUp .4s ease; }
@keyframes slideUp { from { transform:translateY(100%); } to { transform:translateY(0); } }
.cookie-inner { max-width:1200px; margin:0 auto; padding:20px 24px; display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.cookie-text { flex:1; min-width:240px; }
.cookie-text strong { display:block; font-size:1rem; margin-bottom:6px; }
.cookie-text p { margin:0; font-size:.85rem; color:#94a3b8; line-height:1.5; }
.cookie-text a { color:var(--primary); }
.cookie-actions { display:flex; gap:10px; flex-shrink:0; flex-wrap:wrap; }

/* Google Maps Embed */
.map-embed { margin-top:16px; }
.map-embed iframe { display:block; }

/* Broadcast Banner */
.broadcast-bar { position:fixed; top:0; left:0; right:0; z-index:9999; background:linear-gradient(135deg,#1c0808,#7f1d1d); color:#fff; box-shadow:0 4px 20px rgba(0,0,0,.35); animation:bcSlideDown .4s ease; }
@keyframes bcSlideDown { from { transform:translateY(-100%); opacity:0; } to { transform:translateY(0); opacity:1; } }
.broadcast-inner { max-width:1200px; margin:0 auto; padding:14px 60px 14px 24px; display:flex; align-items:center; gap:16px; }
.broadcast-text { margin:0; font-size:1rem; font-weight:600; line-height:1.4; flex:1; }
.broadcast-text i { color:var(--accent); margin-right:8px; }
.broadcast-media { position:relative; flex:1; max-height:120px; overflow:hidden; border-radius:8px; display:flex; align-items:center; }
.broadcast-media img { width:100%; max-height:120px; object-fit:cover; border-radius:8px; }
.broadcast-media video { width:100%; max-height:120px; object-fit:cover; border-radius:8px; }
.broadcast-overlay-text { position:absolute; bottom:0; left:0; right:0; background:rgba(0,0,0,.65); color:#fff; font-weight:700; font-size:1.05rem; padding:8px 14px; text-align:center; }
.broadcast-close { position:absolute; top:50%; right:16px; transform:translateY(-50%); background:rgba(255,255,255,.15); border:none; color:#fff; width:32px; height:32px; border-radius:50%; cursor:pointer; font-size:1rem; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.broadcast-close:hover { background:rgba(255,255,255,.3); }
.broadcast-bar.bc-hidden { display:none; }
body.has-broadcast { padding-top:80px; }
body.has-broadcast .page-content { padding-top: 0; }

/* Legal */
.legal-text { max-width: 820px; margin: 0 auto; }
.legal-text h2 { font-size: 1.8rem; color: var(--dark); margin-bottom: 20px; }
.legal-text h3 { font-size: 1.15rem; color: var(--dark); margin: 24px 0 8px; }
.legal-text p, .legal-text li { margin-bottom: 10px; line-height: 1.75; }
.legal-text hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Admin */
.admin-body { background: #f1f5f9; min-height: 100vh; animation: none; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark2); }
.admin-login-card { background: var(--white); padding: 44px 40px; border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-width: 400px; }
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo i { font-size: 2.5rem; color: var(--primary); }
.admin-login-logo h1 { font-size: 1.6rem; color: var(--dark); margin: 8px 0 4px; }
.admin-login-logo p { color: var(--text-light); font-size: 0.9rem; }
.admin-back-link { text-align: center; margin-top: 18px; font-size: 0.9rem; }
.admin-back-link a { color: var(--text-light); }
.admin-back-link a:hover { color: var(--primary); }
.admin-header { background: var(--dark); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.admin-logo { display: flex; align-items: center; gap: 12px; }
.admin-logo a { color: var(--white); font-weight: 700; font-size: 1.2rem; }
.admin-logo a i { color: var(--primary); }
.admin-logo span { background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 2px 10px; border-radius: 10px; }
.admin-nav { display: flex; gap: 6px; }
.admin-nav a { color: #94a3b8; padding: 8px 14px; border-radius: var(--radius); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.08); color: var(--primary); }
.admin-main { padding: 28px; max-width: 1400px; margin: 0 auto; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat-card { background: var(--white); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.admin-stat-card.highlight { border-top: 3px solid var(--primary); }
.stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--dark); }
.stat-lbl { font-size: 0.85rem; color: var(--text-light); }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.admin-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab { padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-size: 0.88rem; transition: var(--transition); cursor: pointer; text-decoration: none; }
.filter-tab:hover, .filter-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); font-weight: 600; }
.admin-search { display: flex; gap: 0; }
.admin-search input { padding: 8px 14px; border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 0.9rem; width: 260px; }
.admin-search button { padding: 8px 14px; background: var(--primary); border: none; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; font-size: 1rem; color: var(--white); }
.admin-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 13px 16px; background: var(--dark); color: var(--white); text-align: left; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light); }
.unread-row td { font-weight: 600; }
.action-td { white-space: nowrap; }
.btn-sm { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 4px; font-size: 0.82rem; font-weight: 500; border: 1px solid var(--border); color: var(--text); background: var(--white); transition: var(--transition); text-decoration: none; margin-right: 4px; }
.btn-sm:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm-primary { background: var(--primary); border-color: var(--primary); color: var(--white); }
.btn-sm-primary:hover { background: var(--primary-dark); }
.admin-empty { padding: 60px; text-align: center; color: var(--text-light); }
.admin-empty i { font-size: 3rem; margin-bottom: 12px; display: block; opacity: 0.3; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; }
.badge-new     { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.badge-read    { background: #f1f5f9; color: var(--text-light); border: 1px solid var(--border); }
.badge-replied { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.badge-kontakt { background: #fff0f0; color: #991b1b; border: 1px solid #fca5a5; }
.badge-antrag  { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.admin-view-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; max-width: 900px; }
.admin-view-card h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.admin-view-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; flex-wrap: wrap; }
.admin-view-meta span { display: flex; align-items: center; gap: 6px; }
.admin-view-body { margin-bottom: 30px; }
.detail-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.detail-table th { width: 160px; padding: 10px 14px; background: var(--light); color: var(--dark); font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid var(--border); text-align: left; }
.detail-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.admin-message-box, .admin-extra-box { margin-bottom: 20px; }
.admin-message-box h4, .admin-extra-box h4 { font-size: 0.95rem; color: var(--text-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.message-content { background: var(--light); border-left: 4px solid var(--primary); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.7; }
.admin-view-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reply-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.quote-box { background: var(--light); border-left: 3px solid var(--border); padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* Responsive */
@media screen and (max-width: 1024px) {
    .price-cards { grid-template-columns: 1fr 1fr; }
    .usp-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 768px) {
    .nav-links { position: absolute; right: 0; height: calc(100vh - 68px); top: 68px; background: var(--dark2); flex-direction: column; align-items: center; width: 75%; transform: translateX(100%); transition: transform 0.4s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.3); padding-top: 30px; overflow-y: auto; }
    .nav-links li { opacity: 0; margin: 10px 0; }
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; text-align: center; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-icon { margin: 0 auto; }
    .cta-inner { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .price-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; padding: 40px 0 20px; }
    .admin-stats { grid-template-columns: repeat(2,1fr); }
    .admin-table-wrap { overflow-x: auto; }
}
@media screen and (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.7rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .usp-grid { grid-template-columns: 1fr 1fr; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
}
@keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.toggle .line1 { transform: rotate(-45deg) translate(-5px,6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px,-6px); }
