/* Service Page Styling - According to service-page.md specifications */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 79, 127, 0.8) 0%, rgba(30, 63, 102, 0.9) 100%);
    z-index: 1;
}

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

.service-hero .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.service-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Hero USPs */
.hero-usps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.usp-item i {
    font-size: 1.25rem;
    color: #fbbf24;
}

.usp-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Service Intro Section */
.service-intro {
    padding: 80px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #264F7F, #1e3f66);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(38, 79, 127, 0.3);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Service Benefits Grid */
.service-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    background: linear-gradient(135deg, #264F7F, #1e3f66);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #264F7F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefit-cta:hover {
    color: #1e3f66;
    gap: 0.75rem;
}

/* Service Accordion */
.service-accordion {
    padding: 80px 0;
    background: white;
}

.service-accordion h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header[aria-expanded="true"] {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #64748b;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: #264F7F;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 300px;
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
}

.accordion-body p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body li {
    color: #64748b;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Transparency Banner */
.transparency-banner {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.transparency-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.transparency-banner > .container > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.transparency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transparency-item i {
    color: #22c55e;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.transparency-item span {
    font-weight: 500;
    color: #1e293b;
}

/* Export Section */
.export-section {
    padding: 80px 0;
    background: white;
}

.export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.export-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.export-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.export-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.export-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #475569;
}

.export-features i {
    color: #264F7F;
    font-size: 1.25rem;
    width: 20px;
}

.export-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Reviews Carousel */
.reviews-carousel {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-carousel h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
    margin: 0 0.125rem;
}

.review-rating i:not(.active) {
    color: #e5e7eb;
}

.review-content p {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author strong {
    color: #1e293b;
    font-weight: 600;
}

.review-author span {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Service FAQ */
.service-faq {
    padding: 80px 0;
    background: white;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #264F7F 0%, #1e3f66 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Offerte Form */
.offerte-form {
    padding: 80px 0;
    background: #f8fafc;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
    }
    
    .service-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-usps {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid,
    .export-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .transparency-features {
        grid-template-columns: 1fr;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
