/* ==========================================================================
   SKYWASHSOLUTIONS - Seitenspezifische Styles
   Startseite, Anfrage, Impressum, Datenschutz
   ========================================================================== */

/* ===== Startseite - Services Section ===== */
.services-section {
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-xl);
    margin: 0 auto var(--space-5);
    color: var(--white);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.service-text {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: var(--line-height-relaxed);
}

/* ===== Why Section ===== */
.why-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.why-content h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.why-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    margin-bottom: 0;
}

/* ===== Trust Section ===== */
.trust-section {
    background-color: var(--bg-light);
}

.trust-grid {
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.trust-image {
    position: relative;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.trust-image img {
    width: 100%;
    height: auto;
}

.trust-badge {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-lg);
}

.trust-features {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
}

.trust-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-features li:last-child {
    border-bottom: none;
}

.trust-features svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.trust-features span {
    color: var(--text-secondary);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Anfrage Page ===== */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info {
    background: var(--primary-gradient);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-8);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-1);
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    margin-bottom: var(--space-6);
}

/* ===== Legal Pages (Impressum, Datenschutz) ===== */
.legal-section {
    padding: var(--space-12) 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--font-size-2xl);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--primary-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--primary);
}

.legal-content p {
    margin-bottom: var(--space-4);
    line-height: var(--line-height-relaxed);
}

.legal-content ul {
    margin-bottom: var(--space-5);
}

.legal-content li {
    margin-bottom: var(--space-2);
    line-height: var(--line-height-relaxed);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.legal-box p {
    margin-bottom: 0;
}

/* ===== Region Badge ===== */
.region-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--success-light);
    color: #155724;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-4);
}

.region-badge svg {
    width: 16px;
    height: 16px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: var(--space-4);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Process Section ===== */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-full);
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.process-step p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-5);
}

.faq-answer p {
    color: var(--text-secondary);
    margin-bottom: 0;
}