.elementor-1633 .elementor-element.elementor-element-bca56cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:-10px;--margin-left:0px;--margin-right:0px;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-1633 .elementor-element.elementor-element-bca56cc:not(.elementor-motion-effects-element-type-background), .elementor-1633 .elementor-element.elementor-element-bca56cc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FF0000;}/* Start custom CSS for html, class: .elementor-element-d9573fb *//* CSS für Maintenance-Seite - ESSER Dach & Bautenschutz */

/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Main Container */
.maintenance-container {
    min-height: 100vh;
    background: linear-gradient(160deg, #1a365d 0%, #142a49 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.7;
    }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 200px;
    margin: 0 auto;
}

}

.logo-image {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
}



/* Main Message */
.main-message {
    text-align: center;
    margin-bottom: 60px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a365d;
}

.progress-percentage {
    font-size: 1.1rem;
    color: #dc3545;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545, #c82333);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-in-out;
}

/* Services Preview */
.services-preview {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.services-preview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 1.5rem;
    color: #1a365d;
}

.service-item span {
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
    text-align: center;
}

.contact-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-width: 300px;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #dc3545;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: #1a365d;
    font-weight: 600;
    word-break: break-all;
    line-height: 1.3;
}

/* Business Hours */
.business-hours {
    text-align: center;
}

.hours-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #e8f4fd;
    border-radius: 12px;
    color: #1a365d;
}

.hours-item i {
    font-size: 1.2rem;
    color: #dc3545;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-info span {
    font-weight: 500;
}

/* Location Section */
.location-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.location-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 500;
    color: #333;
}

.location-item i {
    color: #dc3545;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
    text-align: center;
}

.newsletter-content p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-group button {
    padding: 15px 25px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.privacy-note {
    text-align: center;
    color: #666;
}

/* Footer */
.maintenance-footer {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.company-info,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-info span,
.footer-links span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


.animated-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.animated-bg span {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  animation: moveUp 40s linear infinite;
}



.animated-bg span:nth-child(1) {
  left: 10%;
  width: 80px;
  height: 80px;
  animation-duration: 25s;
}
.animated-bg span:nth-child(2) {
  left: 20%;
  width: 60px;
  height: 60px;
  animation-duration: 22s;
}
.animated-bg span:nth-child(3) {
  left: 35%;
  width: 100px;
  height: 100px;
  animation-duration: 30s;
}
.animated-bg span:nth-child(4) {
  left: 55%;
  width: 50px;
  height: 50px;
  animation-duration: 26s;
}
.animated-bg span:nth-child(5) {
  left: 70%;
  width: 90px;
  height: 90px;
  animation-duration: 33s;
}
.animated-bg span:nth-child(6) {
  left: 85%;
  width: 70px;
  height: 70px;
  animation-duration: 28s;
}

@keyframes moveUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}


/* Mobile Optimierung */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px 15px;
    }
    
    .logo-container {
        padding: 20px 25px;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .main-message h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-method {
        min-width: auto;
        padding: 20px 15px;
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-message h2 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .services-preview,
    .contact-section,
    .location-section,
    .newsletter-section {
        padding: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-shape {
        animation: none;
    }
    
    .progress-fill {
        transition: none;
    }
    
    * {
        transition: none !important;
    }
}


/* Print Styles */
@media print {
    .background-animation,
    .floating-shape {
        display: none;
    }
    
    .maintenance-container {
        background: white;
        color: black;
    }
    
    .newsletter-section {
        display: none;
    }
}/* End custom CSS */