/* Red Hero Section */
.service-hero-red {
    background: linear-gradient(135deg, rgb(184 41 0 / 89%) 0%, rgb(229 49 49 / 0%) 100%),  url('../images/rauchfangaufsaetze.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(255,255,255,0.02)" points="0,800 1000,600 1000,800 0,1000"/></svg>');
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.current {
    color: white;
    font-weight: 500;
}

.service-hero-red h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.location-highlight {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 300;
}

.service-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trust-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background: white !important;
    color: #000 !important;
    border: 2px solid white !important;
    font-weight: 600 !important;
}

.btn-white::before {
    display: none !important;
}

.btn-white:hover {
    background: #000 !important;
    color: white !important;
    border-color: #000 !important;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    font-weight: 600 !important;
}

.btn-outline-white::before {
    display: none !important;
}

.btn-outline-white:hover {
    background: white !important;
    color: #000 !important;
    border-color: white !important;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 120px 0;
    background: var(--secondary-color);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem-side h2 {
    color: var(--accent-color);
    margin-bottom: 40px;
}

.solution-side h2 {
    color: #51cf66;
    margin-bottom: 40px;
}

.problem-list,
.solution-list {
    display: grid;
    gap: 25px;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 5px;
    min-width: 20px;
}

.solution-item i {
    color: #51cf66;
    font-size: 1.3rem;
    margin-top: 5px;
    min-width: 20px;
}

.problem-item h4,
.solution-item h4 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.problem-item p,
.solution-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 0;
    background: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 0;
    border-top: 3px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--accent-color);
    box-shadow: var(--shadow-strong);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--accent-color);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-color);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-color);
}

/* Installation Process */
.installation-process {
    padding: 120px 0;
    background: var(--secondary-color);
}

.process-timeline {
    margin-top: 60px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.timeline-number {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.8rem;
}

.timeline-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.process-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.process-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.process-details span::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 0;
    position: relative;
    box-shadow: var(--shadow-soft);
    border-left: 3px solid var(--accent-color);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    margin-bottom: 15px;
}

.testimonial-author strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffd700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Improvements */
.service-faq {
    padding: 120px 0;
    background: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: var(--primary-color);
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-strong);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}

.faq-question:hover,
.faq-question.active {
    border-left-color: var(--accent-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-question.active i {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E53131 100%);
    text-align: center;
    position: relative;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,200 1000,0"/></svg>');
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-promises {
    margin-top: 40px;
    padding: 30px;
    background: rgba(196, 30, 30, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 0;
}

.service-promises h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-promises ul {
    list-style: none;
    padding: 0;
}

.service-promises ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.form-note {
    margin-top: 15px;
    text-align: center;
}

.form-note small {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero-red {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .service-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .timeline-number {
        position: static;
        margin: 0 auto 20px;
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .process-details {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero-red h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
} 