/* Express Entsorgung - Premium Handwerker Theme */

:root {
    --primary: #ff6b00;
    --secondary: #003d7a;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --success: #28a745;
    --white: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.topbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.topbar a:hover {
    color: var(--primary);
}

/* Header / Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,61,122,0.95) 0%, rgba(0,31,63,0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px 0;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero .lead {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero .badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.hero .badge-item {
    background: white;
    color: var(--secondary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero .badge-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
}

.price-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 800;
    display: inline-block;
    margin: 30px 0;
    box-shadow: 0 6px 30px rgba(255,107,0,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,107,0,0.5);
    color: white;
}

.btn-whatsapp-custom {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    border: none;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 5px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 6px solid var(--primary);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.info-box strong {
    color: var(--secondary);
    font-size: 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px 0;
}

.footer h5 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #6c757d;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
    position: relative;
    animation: float-pulse 2s infinite;
}

@keyframes float-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.float-btn:hover {
    animation: none;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
}

.float-btn i {
    font-size: 32px;
    color: white;
}

.float-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
}

.float-text {
    position: absolute;
    right: 85px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.float-btn:hover .float-text {
    opacity: 1;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255,107,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .price-badge {
        font-size: 24px;
        padding: 15px 35px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 60px;
        height: 60px;
    }
    
    .float-btn i {
        font-size: 26px;
    }
    
    .float-text {
        display: none;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}


/* Scrollbar stylen */
.cities-scroll::-webkit-scrollbar {
    width: 8px;
}

.cities-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.cities-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.cities-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}


/* Cookie Banner - Kompakt & Sichtbar */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 6px 0;
    z-index: 9999;
    display: none;
}

#cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h6 {
    display: none;
}

.cookie-text p {
    margin: 0;
    color: #666;
    font-size: 11px;
    line-height: 1.2;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
}

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

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

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

.cookie-btn-accept:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: #e9ecef;
    color: #333;
}

.cookie-btn-decline:hover {
    background: #dee2e6;
}

@media (max-width: 768px) {
    #cookie-banner {
        bottom: 10px;
        width: 95%;
        padding: 14px 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}


/* TÜV Nord Badge - Fixed oben links */
.tuev-badge {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 999;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    padding: 3px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.tuev-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tuev-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* TUeV Nav Logo (nur Mobile, per d-lg-none Bootstrap) */
.tuev-nav-logo {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    display: inline-block !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 6px;
    vertical-align: middle;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    /* Floating Badge auf Mobile ausblenden - ist jetzt in der Navbar */
    .tuev-badge {
        display: none;
    }

    /* Logo kleiner auf Mobile */
    .navbar-brand {
        font-size: 20px !important;
    }
}


/* Städte-Accordion im Footer */
.accordion-button:not(.collapsed) {
    background: rgba(255,107,0,0.2) !important;
    color: white !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.city-link-small {
    display: block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    transition: all 0.3s;
    text-align: center;
}

.city-link-small:hover {
    background: var(--primary);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .city-link-small {
        font-size: 12px;
        padding: 5px 10px;
    }
}




/* Einsatzgebiete Karte */
.city-list {
    max-height: 400px;
    overflow-y: auto;
}

.city-list-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s;
}

.city-list-item:hover {
    background: #f8f9fa;
    padding-left: 15px;
    color: var(--primary);
}

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

/* Scrollbar für Städte-Liste */
.city-list::-webkit-scrollbar {
    width: 6px;
}

.city-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.city-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
