/* ============================================================================
   CONTACT (KONTAKT) PAGE CSS
   ============================================================================
   
   Optimierte Version basierend auf Mockup - Februar 2026
   ============================================================================ */

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(21, 40, 64, 0.94) 100%);
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i,
.hero-badge svg {
    color: var(--accent);
    stroke: var(--accent);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}

.btn-primary svg {
    stroke: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary svg {
    stroke: var(--white);
}

/* ============================================
   CONTACT CARDS SECTION
============================================ */
.contact-cards-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i,
.contact-card-icon svg {
    color: var(--white);
    stroke: var(--white) !important;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 4px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-card .highlight {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

/* ============================================
   QUICK CONTACT SECTION
============================================ */
.quick-contact-section {
    background: var(--gray-50);
    padding: var(--section-padding-sm);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.quick-contact-btn i,
.quick-contact-btn svg {
    flex-shrink: 0;
}

.quick-contact-btn.phone svg {
    stroke: var(--white);
}

.quick-contact-btn.email svg {
    stroke: var(--primary);
}

.quick-contact-btn.phone {
    background: var(--primary);
    color: var(--white);
}

.quick-contact-btn.phone:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-btn.email {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.quick-contact-btn.email:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.quick-contact-btn.email:hover svg {
    stroke: var(--white);
}

/* ============================================
   SERVICE NOTICE SECTION
============================================ */
.service-notice-section {
    background: var(--white);
    padding: var(--section-padding);
}

.service-notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-notice-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 24px;
}

.service-notice-content h2 span {
    color: var(--accent);
}

.service-notice-content p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-option:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-option-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-option-icon i,
.service-option-icon svg {
    color: var(--white);
    stroke: var(--white) !important;
}

.service-option-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.service-option-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.service-notice-visual {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    color: var(--white);
}

.service-notice-visual h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.service-notice-visual p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.7;
}

.service-notice-visual .btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}

.service-notice-visual .btn-primary svg {
    stroke: var(--white);
}

.service-notice-visual .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.45);
}

/* ============================================
   MAP SECTION
============================================ */
.map-section {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.map-section > .container {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-label i,
.section-label svg {
    stroke: var(--white);
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.map-embed {
    min-height: 500px;
    display: flex;
    position: relative;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    flex: 1;
}

/* Map Placeholder für 2-Klick-Lösung (DSGVO) */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #152840 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.map-placeholder-content i,
.map-placeholder-content svg {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.map-placeholder-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.map-placeholder-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.map-placeholder-content p a {
    color: var(--accent);
    text-decoration: underline;
}

.map-placeholder-content p a:hover {
    color: #fb923c;
}

.map-placeholder-content .btn-primary {
    margin: 0 auto;
}

.map-placeholder.hidden {
    display: none;
}

.map-info {
    background: var(--primary);
    padding: 56px 44px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.map-info-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.map-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.map-info-list li i,
.map-info-list li svg {
    color: var(--accent);
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.map-info-list li span {
    font-size: 15px;
    line-height: 1.6;
}

.map-info-list li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.map-info-list li a:hover {
    color: var(--accent-light);
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 16px;
}

.map-directions-btn svg {
    stroke: var(--white);
}

.map-directions-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background: var(--white);
    padding: var(--section-padding);
}

.faq-section > .container {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h4 i,
.faq-item h4 svg {
    color: var(--accent);
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 36px;
}

.faq-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 28px 32px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s;
}

.faq-more-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-more-link:hover .faq-more-text h4,
.faq-more-link:hover .faq-more-text p,
.faq-more-link:hover .faq-more-icon {
    color: var(--white);
}

.faq-more-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-more-link:hover .faq-more-icon {
    background: rgba(255, 255, 255, 0.15);
}

.faq-more-icon i,
.faq-more-icon svg {
    color: var(--white);
    stroke: var(--white) !important;
}

.faq-more-text {
    flex: 1;
    text-align: left;
}

.faq-more-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.faq-more-text p {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0;
    transition: color 0.3s;
}

.faq-more-arrow,
.faq-more-arrow svg {
    color: var(--accent);
    stroke: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s, stroke 0.3s;
}

.faq-more-link:hover .faq-more-arrow,
.faq-more-link:hover .faq-more-arrow svg {
    transform: translateX(4px);
    color: var(--white);
    stroke: var(--white);
}

/* ============================================
   FINAL CTA SECTION
============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-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 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 150px;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: var(--accent);
}

.final-cta > .container > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.trust-badge i,
.trust-badge svg {
    color: var(--success);
    stroke: var(--success);
}

.cta-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-contact .contact-item i,
.cta-contact .contact-item svg {
    color: var(--accent);
    stroke: var(--accent);
}

.cta-contact .contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.cta-contact .contact-item a:hover {
    color: var(--accent-light);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-info {
        order: -1;
    }

    .service-notice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-notice-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 120px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-section {
        margin-top: -60px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .map-embed {
        min-height: 350px;
    }
    
    .map-embed iframe {
        min-height: 350px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .faq-more-link {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }
    
    .faq-more-text {
        text-align: center;
    }
    
    .faq-more-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 100px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .service-notice-visual {
        padding: 32px 24px;
    }

    .map-info {
        padding: 32px 24px;
    }

    .faq-item {
        padding: 24px;
    }

    .final-cta {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
}
