/* ============================================================
   DELIVY v3.0 - Lieferfabrik Style
   Dunkelbraun/Rot Design, runde Buttons, schwebende Actions
   ============================================================ */

:root {
    --color-primary: #e85d4e;
    --color-primary-dark: #c94a3d;
    --color-primary-light: #ff7a6e;
    --color-bg: #2d1f1f;
    --color-bg-light: #3d2a2a;
    --color-bg-card: #4a3535;
    --color-white: #ffffff;
    --color-gray: #f5f0f0;
    --color-gray-dark: #8a7a7a;
    --color-text: #fff0f0;
    --color-text-muted: rgba(255,240,240,0.6);
    --color-border: rgba(255,255,255,0.1);
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-warning: #ffc107;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   Navigation - Transparent
   ============================================================ */
.navbar {
    background: transparent;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(45, 31, 31, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon { font-size: 1.8rem; }
.logo-text { color: var(--color-primary); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
}

.nav-menu a:hover { color: var(--color-white); background: rgba(255,255,255,0.1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px; height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   Buttons - Runde, Farbverlauf
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(232, 93, 78, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232, 93, 78, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-bg);
    box-shadow: var(--shadow-md);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============================================================
   Hero Section - Lieferfabrik Style
   ============================================================ */
.hero {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    color: var(--color-white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,93,78,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 93, 78, 0.2);
    color: var(--color-primary-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(232, 93, 78, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero h1 span { color: var(--color-primary-light); }

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-video {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.1);
}

.hero-video img {
    width: 100%;
    display: block;
}

.hero-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-video .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-white);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--color-bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.partner-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

/* ============================================================
   Schwebende Action Buttons (WhatsApp + Anruf)
   ============================================================ */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 999;
    padding: 12px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 22px 55px rgba(0,0,0,0.22);
    border: 1px solid rgba(15,17,23,0.08);
    backdrop-filter: blur(16px);
}
.floating-contact-chip {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,90,60,0.16), rgba(255,90,60,0.3));
    border: 2px solid rgba(255,90,60,0.28);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
    color: var(--color-primary);
    font-weight: 800;
}
.floating-contact-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    background: #fff;
}
.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(255,90,60,0.45);
    background: #fff;
}
.floating-btn .icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.floating-btn .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.floating-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 14px 26px rgba(0,0,0,0.12);
    background: #fff7f5;
}
.floating-btn.whatsapp {
    color: #25a759;
    border-color: rgba(37,211,102,0.45);
}
.floating-btn.whatsapp:hover { background: rgba(37,211,102,0.08); }
.floating-btn .tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: #111827;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   Testimonials - Karten mit Bildern
   ============================================================ */
.testimonials-section {
    background: var(--color-bg-light);
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,93,78,0.3);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.testimonial-content {
    padding: 28px;
}

.testimonial-rating { color: #ffc107; font-size: 1rem; margin-bottom: 12px; }

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.testimonial-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
}

/* ============================================================
   Features Tabs
   ============================================================ */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 12px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.feature-tab:hover { background: rgba(232,93,78,0.1); color: var(--color-white); }
.feature-tab.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(232,93,78,0.3);
}

.feature-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.feature-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Service Cards
   ============================================================ */
.services-section {
    background: var(--color-bg);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,93,78,0.3);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-card-body { padding: 24px; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-light);
    margin-bottom: 4px;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================================================
   Vergleich Section
   ============================================================ */
.compare-section {
    background: var(--color-bg-light);
    padding: 100px 0;
}

.compare-table {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 18px 28px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.compare-row.header {
    background: rgba(232,93,78,0.1);
    font-weight: 700;
    color: var(--color-white);
}

.compare-row .check { color: var(--color-success); font-weight: 700; }
.compare-row .cross { color: var(--color-error); font-weight: 700; }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-section {
    background: var(--color-bg);
    padding: 100px 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(232,93,78,0.2); }

.faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.faq-question:hover { color: var(--color-primary-light); }

.faq-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--color-primary);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 28px 20px;
}

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

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Kontakt
   ============================================================ */
.contact-section {
    background: var(--color-bg-light);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-form-box {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-white);
}
.form-group .required { color: var(--color-primary); }

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-bg);
    color: var(--color-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(232, 93, 78, 0.1);
}

.form-control::placeholder { color: var(--color-gray-dark); }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
    width: 22px; height: 22px;
    accent-color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check label { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.5; }
.form-check label a { color: var(--color-primary-light); }

/* ============================================================
   Upload Zone
   ============================================================ */
.upload-zone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: var(--color-bg);
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--color-primary);
    background: rgba(232, 93, 78, 0.05);
}

/* ============================================================
   Alerts
   ============================================================ */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success { background: rgba(40,167,69,0.15); color: #28a745; border: 1px solid rgba(40,167,69,0.3); }
.alert-error { background: rgba(220,53,69,0.15); color: #dc3545; border: 1px solid rgba(220,53,69,0.3); }
.alert-info { background: rgba(23,162,184,0.15); color: #17a2b8; border: 1px solid rgba(23,162,184,0.3); }

/* ============================================================
   Badges
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success { background: rgba(40,167,69,0.15); color: #28a745; }
.badge-error { background: rgba(220,53,69,0.15); color: #dc3545; }
.badge-warning { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-info { background: rgba(23,162,184,0.15); color: #17a2b8; }
.badge-orange { background: rgba(253,126,20,0.15); color: #fd7e14; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--color-bg-light);
    color: var(--color-text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-logo-img { max-width: 200px; max-height: 58px; }

.footer-links h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--color-white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--color-primary-light); }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
    color: var(--color-gray-dark);
    font-size: 0.8rem;
}

/* ============================================================
   Admin Layout
   ============================================================ */
.admin-body { display: flex; min-height: 100vh; background: #1a1a2e; }

.admin-sidebar {
    width: 260px;
    background: #16213e;
    color: var(--color-white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.admin-sidebar-nav { list-style: none; padding: 16px 0; }
.admin-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    border-left: 3px solid transparent;
}
.admin-sidebar-nav li a:hover, .admin-sidebar-nav li a.active {
    background: rgba(232, 93, 78, 0.15);
    color: var(--color-white);
    border-left-color: var(--color-primary);
}

.admin-main { margin-left: 260px; flex-grow: 1; min-height: 100vh; }
.admin-header {
    background: #16213e;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-header h1 { font-size: 1.4rem; font-weight: 700; color: var(--color-white); }
.admin-content { padding: 32px; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.stat-card {
    background: #16213e;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--color-gray-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--color-white); }

/* Data Table */
.data-table-container {
    background: #16213e;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.data-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.data-table-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-white); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-dark);
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}
.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    vertical-align: middle;
}
.data-table tr:hover td { background: rgba(232,93,78,0.03); }
.data-table .actions { display: flex; gap: 8px; }
.data-table .actions a {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}
.data-table .actions .btn-view { background: rgba(25,118,210,0.15); color: #64b5f6; }
.data-table .actions .btn-edit { background: rgba(245,124,0,0.15); color: #ffb74d; }
.data-table .actions .btn-delete { background: rgba(211,47,47,0.15); color: #ef5350; }

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    padding: 20px;
}
.login-box {
    background: var(--color-bg-card);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--color-border);
}
.login-box .logo { justify-content: center; margin-bottom: 32px; }
.login-box h2 { text-align: center; margin-bottom: 32px; color: var(--color-white); font-size: 1.5rem; }

/* Result Pages */
.result-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--color-bg);
}
.result-card {
    background: var(--color-bg-card);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--color-border);
}
.result-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    width: 80px;
    height: 80px;
    background: rgba(40,167,69,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.result-card h2 { font-size: 1.8rem; color: var(--color-white); margin-bottom: 16px; }
.result-card p { color: var(--color-text-muted); margin-bottom: 28px; }

/* Image Preview */
.image-preview-box {
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
}
.image-preview-box img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--color-border);
}
.image-preview-box .delete-btn {
    position: absolute;
    top: -8px; right: -8px;
    width: 28px; height: 28px;
    background: var(--color-error);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.4rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main { margin-left: 0; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1fr; gap: 8px; }
    .compare-row.header { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-actions { right: 12px; bottom: 80px; padding: 10px 8px; }
    .floating-btn { width: 44px; height: 44px; }
    .floating-contact-chip { width: 42px; height: 42px; }
    .cta-banner h2 { font-size: 1.5rem; }
    .partner-logos { gap: 12px; }
    .partner-logo { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .login-box { padding: 32px 24px; }
    .contact-form-box { padding: 24px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-dark); }

/* Utility */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary-light); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 32px; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 32px; }
.hidden { display: none; }
.w-full { width: 100%; }

/* ============================================================
   DELIVY Modern Refresh 2026
   Sauberer SaaS-Look, hellere Akzente, Glas-Karten, Admin Branding
   ============================================================ */
:root {
    --color-primary: #ff5a3c;
    --color-primary-dark: #e44328;
    --color-primary-light: #ff9a74;
    --color-bg: #0f1117;
    --color-bg-light: #171b25;
    --color-bg-card: rgba(255,255,255,0.075);
    --color-text: #f8fafc;
    --color-text-muted: rgba(248,250,252,0.68);
    --color-border: rgba(255,255,255,0.13);
    --shadow-sm: 0 8px 22px rgba(0,0,0,0.16);
    --shadow-md: 0 18px 55px rgba(0,0,0,0.28);
    --shadow-lg: 0 28px 90px rgba(0,0,0,0.38);
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}
body {
    background:
        radial-gradient(circle at top left, rgba(255,90,60,0.18), transparent 34rem),
        radial-gradient(circle at 82% 12%, rgba(110,95,255,0.16), transparent 30rem),
        linear-gradient(180deg, #0f1117 0%, #121722 48%, #0f1117 100%);
}
.navbar {
    padding: 12px 0;
}
.navbar.scrolled,
.navbar:hover {
    background: rgba(15,17,23,0.82);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(24px);
}
.logo { min-height: 44px; }
.site-logo-img {
    max-width: 178px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.admin-sidebar .site-logo-img { max-width: 160px; max-height: 54px; }
.logo-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 12px 30px rgba(255,90,60,0.32);
}
.logo-text {
    color: var(--color-white);
    letter-spacing: -0.04em;
}
.nav-menu a:not(.btn) {
    color: var(--color-text-muted);
    font-weight: 700;
}
.nav-menu a:not(.btn):hover { color: var(--color-white); }
.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border: 0;
    color: #fff;
    box-shadow: 0 18px 44px rgba(255,90,60,0.32);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(255,90,60,0.42);
}
.btn-outline {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--color-white);
}
.hero {
    min-height: auto;
    padding: 154px 0 88px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 7rem auto auto 50%;
    width: 56rem;
    height: 56rem;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,90,60,0.18), transparent 65%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    background: rgba(255,255,255,0.09);
    border: 1px solid var(--color-border);
    color: var(--color-primary-light);
    backdrop-filter: blur(16px);
}
.hero h1 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    letter-spacing: -0.075em;
    line-height: .95;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--color-primary-light), #fff 52%, var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
}
.hero p {
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}
.hero-video,
.service-card,
.testimonial-card,
.contact-form-box,
.compare-table,
.feature-content,
.faq-item,
.partner-logo,
.admin-stat-card,
.settings-group-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.055));
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}
.hero-video {
    border-radius: 34px;
    overflow: hidden;
    max-width: 980px;
}
.play-btn {
    background: rgba(255,255,255,0.95);
    color: var(--color-primary);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.section,
.services-section,
.testimonials-section,
.compare-section,
.faq-section,
.contact-section { padding: 92px 0; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.055em;
    line-height: 1.02;
}
.services-grid,
.testimonials-grid { gap: 26px; }
.service-card {
    border-radius: 30px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover,
.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,90,60,0.42);
    box-shadow: var(--shadow-lg);
}
.service-image-placeholder {
    background: linear-gradient(135deg, rgba(255,90,60,0.18), rgba(255,255,255,0.05));
}
.service-price {
    color: var(--color-white);
    font-size: 2.25rem;
    letter-spacing: -0.04em;
}
.service-features li::before { color: var(--color-primary-light); }
.compare-table { border-radius: 30px; overflow: hidden; }
.compare-row.header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.faq-item { border-radius: 22px; overflow: hidden; }
.cta-banner {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 28rem),
        linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.form-control {
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--color-white);
    border-radius: 14px;
}
.form-control:focus {
    border-color: rgba(255,90,60,0.72);
    box-shadow: 0 0 0 4px rgba(255,90,60,0.12);
}
.form-control option { color: #111; }
.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.payment-option {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    transition: var(--transition);
}
.payment-option:hover,
.payment-option:has(input:checked) {
    border-color: rgba(255,90,60,0.65);
    background: rgba(255,90,60,0.11);
}
.payment-option input { accent-color: var(--color-primary); }
.payment-option-icon { font-size: 1.6rem; }
.payment-option small { display: block; color: var(--color-text-muted); margin-top: 2px; }
.admin-body { background: #0f1117; }
.admin-sidebar {
    background: rgba(15,17,23,0.94);
    border-right: 1px solid var(--color-border);
    backdrop-filter: blur(22px);
}
.admin-sidebar-nav a {
    border-radius: 14px;
    margin: 4px 12px;
}
.admin-sidebar-nav a.active,
.admin-sidebar-nav a:hover {
    background: rgba(255,90,60,0.13);
    color: var(--color-white);
}
.admin-header {
    background: rgba(15,17,23,0.78);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(18px);
}
.admin-content { background: transparent; }
.settings-panel .text-muted { color: var(--color-text-muted); }
.settings-group-card {
    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
}
.settings-group-card h3 {
    margin-bottom: 18px;
    color: var(--color-white);
    letter-spacing: -0.02em;
}
.brand-preview,
.favicon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 86px;
    border: 1px dashed rgba(255,255,255,0.22);
    border-radius: 18px;
    background: rgba(0,0,0,0.18);
    margin-bottom: 12px;
}
.brand-preview img { max-width: 240px; max-height: 74px; object-fit: contain; }
.favicon-preview img { max-width: 56px; max-height: 56px; object-fit: contain; }
.form-check-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .payment-options { grid-template-columns: 1fr; }
    .hero { padding-top: 124px; }
    .site-logo-img { max-width: 148px; }
}


/* ============================================================
   FINAL RESPONSIVE FIXES
   Feste Logo-Größen + bessere Mobile/Tablet Darstellung
   ============================================================ */

/* Logo ist jetzt unabhängig von der hochgeladenen Bildgröße */
.logo {
    flex: 0 0 auto;
}
.site-logo-img {
    width: 180px !important;
    height: 52px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
}
.navbar .site-logo-img {
    width: 180px !important;
    height: 52px !important;
}
.footer-logo-img {
    width: 210px !important;
    height: 62px !important;
}
.admin-sidebar .site-logo-img {
    width: 170px !important;
    height: 58px !important;
}

/* Navbar stabiler auf kleineren Bildschirmen */
.navbar .container {
    gap: 16px;
}
.nav-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-menu a {
    white-space: nowrap;
}

/* Hero-Bilder und große Logos werden nie zu hoch */
.hero-video {
    width: min(100%, 980px);
}
.hero-video img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    background: rgba(255,255,255,0.02);
}

/* Feature-Bereich ohne Inline-CSS auf Handy reparieren */
.feature-content > div {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

/* Floating Kontaktleiste */
.floating-actions {
    right: clamp(10px, 2vw, 22px);
    bottom: clamp(76px, 8vh, 110px);
}
.floating-contact-chip {
    flex: 0 0 auto;
}
.floating-btn {
    flex: 0 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    .site-logo-img,
    .navbar .site-logo-img {
        width: 164px !important;
        height: 48px !important;
    }
    .nav-menu {
        gap: 4px;
    }
    .nav-menu a {
        padding: 8px 12px;
        font-size: 0.84rem;
    }
    .hero {
        padding-top: 132px;
    }
    .hero-video img {
        max-height: 380px;
    }
}

/* Handy / Burger-Menü */
@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .navbar .container {
        height: 58px;
    }
    .site-logo-img,
    .navbar .site-logo-img {
        width: 148px !important;
        height: 44px !important;
    }
    .footer-logo-img {
        width: 180px !important;
        height: 54px !important;
    }
    .nav-menu {
        top: 74px;
        left: 12px;
        right: 12px;
        border-radius: 22px;
        padding: 16px;
        background: rgba(15,17,23,0.96);
        border: 1px solid var(--color-border);
        backdrop-filter: blur(22px);
    }
    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }
    .nav-menu a {
        justify-content: center;
        text-align: center;
        padding: 12px 14px;
    }
    .hero {
        padding: 112px 0 56px;
    }
    .hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        letter-spacing: -0.055em;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 36px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-video {
        border-radius: 22px;
    }
    .hero-video img {
        max-height: 260px;
    }
    .feature-content > div {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .payment-options {
        grid-template-columns: 1fr !important;
    }
    .floating-actions {
        right: 10px;
        bottom: 72px;
        gap: 8px;
        padding: 9px 7px;
    }
    .floating-contact-chip {
        width: 38px;
        height: 38px;
    }
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    .floating-btn .icon {
        width: 19px;
        height: 19px;
    }
    .floating-btn .tooltip {
        display: none;
    }
}

/* Sehr kleine Handys */
@media (max-width: 420px) {
    .site-logo-img,
    .navbar .site-logo-img {
        width: 132px !important;
        height: 40px !important;
    }
    .navbar {
        padding: 9px 0;
    }
    .hero {
        padding-top: 98px;
    }
    .hero h1 {
        font-size: clamp(1.7rem, 10vw, 2.35rem);
    }
    .btn-lg {
        padding: 15px 20px;
        font-size: 0.98rem;
    }
    .section,
    .services-section,
    .testimonials-section,
    .compare-section,
    .faq-section,
    .contact-section {
        padding: 56px 0;
    }
    .floating-actions {
        right: 8px;
        bottom: 66px;
        padding: 8px 6px;
        border-radius: 999px;
    }
    .floating-contact-chip {
        width: 34px;
        height: 34px;
    }
    .floating-btn {
        width: 38px;
        height: 38px;
        border-width: 1.5px;
    }
    .floating-btn .icon {
        width: 18px;
        height: 18px;
    }
}

/* Admin responsive */
@media (max-width: 992px) {
    .admin-sidebar .site-logo-img {
        width: 150px !important;
        height: 50px !important;
    }
}


/* ============================================================
   FIX: Admin Uploads, Checkout Layout, Video & Floating Responsive
   ============================================================ */

.hero-video-placeholder {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #3d2a2a, #4a3535);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hero-video .play-btn {
    text-decoration: none;
    z-index: 5;
}

/* Form-Grids wurden ergänzt, damit Checkout nicht mehr einspaltig/kaputt wirkt */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}
.form-row .form-group {
    min-width: 0;
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0;
    color: var(--color-text-muted);
}
.form-check input {
    margin-top: 5px;
    flex: 0 0 auto;
}
.form-check label {
    line-height: 1.5;
}
.form-check-bottom {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
}
.form-check-bottom label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Checkout Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}
.step {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.065);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}
.step-number {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(255,255,255,0.08);
    color: var(--color-text-muted);
}
.step-label {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.step.active,
.step.completed {
    border-color: rgba(255,90,60,0.42);
    background: rgba(255,90,60,0.11);
    color: var(--color-white);
}
.step.active .step-number,
.step.completed .step-number {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
}

/* Checkout Box */
.booking-checkout-section {
    padding-top: 132px !important;
}
.booking-checkout-container {
    max-width: 980px !important;
}
.booking-form-box {
    max-width: 100%;
}
.booking-form-box .form-control {
    min-height: 54px;
}
.booking-form-box textarea.form-control {
    min-height: 120px;
}
.booking-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}

/* Admin Upload Cards */
.admin-edit-card {
    width: min(100%, 820px);
}
.image-preview-box {
    position: relative;
    width: 100%;
    min-height: 120px;
    margin-bottom: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-preview-box img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    display: block;
}
.image-preview-box .delete-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(255,90,60,0.95);
    color: #fff;
    font-weight: 900;
}
.upload-zone {
    border: 1.5px dashed rgba(255,255,255,0.22);
    border-radius: 20px;
    background: rgba(255,255,255,0.055);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.upload-zone:hover {
    border-color: rgba(255,90,60,0.72);
    background: rgba(255,90,60,0.08);
}
.upload-zone .icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.upload-zone p {
    margin: 0;
    font-weight: 800;
}
.upload-zone small {
    color: var(--color-text-muted);
}

/* Floating auf kleinen Displays besser */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .step {
        padding: 11px 12px;
    }
    .step-number {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 0.85rem;
    }
    .step-label {
        font-size: 0.9rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-checkout-section {
        padding-top: 108px !important;
    }
    .booking-form-box {
        padding: 24px !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 440px) {
    .steps {
        grid-template-columns: 1fr;
    }
    .step {
        padding: 10px 12px;
    }
    .booking-checkout-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .booking-form-box {
        padding: 20px !important;
    }
}

/* ============================================================
   Floating WhatsApp / Call Button - Admin steuerbar
   ============================================================ */

.floating-actions {
    position: fixed;
    bottom: var(--floating-bottom, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    padding: 12px 10px;
    border-radius: 999px;
    background: var(--floating-bg, #ffffff);
    box-shadow: 0 22px 55px rgba(0,0,0,0.22);
    border: 1px solid rgba(15,17,23,0.08);
}

.floating-actions.floating-right {
    right: 20px;
}

.floating-actions.floating-left {
    left: 20px;
}

.floating-contact-chip {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 2px solid rgba(0,0,0,0.08);
}

.floating-contact-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.floating-contact-chip span {
    color: #111827;
    font-weight: 800;
    font-size: 18px;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--btn-color, #ff5a3c);
    background: #ffffff;
    border: 2px solid color-mix(in srgb, var(--btn-color, #ff5a3c) 45%, transparent);
    text-decoration: none;
    position: relative;
    transition: all .25s ease;
}

.floating-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: color-mix(in srgb, var(--btn-color, #ff5a3c) 10%, #ffffff);
}

.floating-btn .icon {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.floating-btn .tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111827;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}

.floating-right .tooltip {
    right: calc(100% + 12px);
}

.floating-left .tooltip {
    left: calc(100% + 12px);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: max(66px, calc(var(--floating-bottom, 90px) - 18px));
        gap: 8px;
        padding: 9px 7px;
    }

    .floating-actions.floating-right {
        right: 10px;
    }

    .floating-actions.floating-left {
        left: 10px;
    }

    .floating-contact-chip {
        width: 38px;
        height: 38px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
    }

    .floating-btn .icon {
        font-size: 19px;
    }

    .floating-btn .tooltip {
        display: none;
    }
}

@media (max-width: 420px) {
    .floating-actions {
        gap: 7px;
        padding: 8px 6px;
    }

    .floating-contact-chip {
        width: 34px;
        height: 34px;
    }

    .floating-btn {
        width: 38px;
        height: 38px;
    }

    .floating-btn .icon {
        font-size: 18px;
    }
}
