/**
 * Additional Styles for Service Pages & Multi-Page Layout
 * S.Y.Z. GmbH & Co. KG
 */

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 1.5rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid #e5e7eb;
    margin-top: 70px;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.breadcrumb span {
    color: var(--text-secondary);
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 4rem 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Service Hero ===== */
.service-hero {
    padding: 5rem 20px;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== Service Features ===== */
.service-features {
    padding: 5rem 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Service Details ===== */
.service-details {
    padding: 5rem 20px;
    background: var(--bg-secondary);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.details-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.details-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-item strong {
    color: var(--text-primary);
}

/* ===== Details Sidebar ===== */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box,
.info-box {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-box h3,
.info-box h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-box {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info-box strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact-info-box a {
    color: var(--primary-color);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ===== Target Groups ===== */
.target-groups {
    padding: 5rem 20px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.target-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.target-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.target-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 20px;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 20px;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* ===== Services Overview (Large Cards) ===== */
.services-overview {
    padding: 5rem 20px;
}

.services-grid-large {
    display: grid;
    gap: 3rem;
}

.service-card-large {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    font-size: 6rem;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-highlights li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
    padding: 5rem 20px;
    background: var(--bg-secondary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-alt {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 4rem;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.feature-alt h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-alt p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Contact Page Specific ===== */
.contact-page {
    padding: 5rem 20px;
}

.contact-details .contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-details .contact-item:last-child {
    border-bottom: none;
}

.contact-details .contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-extra {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.contact-extra h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-privacy {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== Map Section ===== */
.map-section {
    padding: 5rem 20px;
    background: var(--bg-secondary);
}

.map-placeholder {
    margin-top: 2rem;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed #e5e7eb;
}

.map-placeholder p {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-info {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    line-height: 1.8;
}

/* ===== Contact Reasons ===== */
.contact-reasons {
    padding: 5rem 20px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* ===== Navigation Dropdown ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-left: 2rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .details-grid,
    .service-card-large {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 1px solid #e5e7eb;
        margin-top: 0.5rem;
    }
}
