/* 
 * datenanalyse.css - Styles for the Data Analytics page
 * GestionaTech
 */

/* ===== Page Hero Section ===== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    color: #fff;
    background-color: #1a1a1a;
    overflow: hidden;
}

#analytics-hero {
    background: url('../images/data.png') no-repeat center center;
    background-size: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 36, 94, 0.85) 0%, rgba(93, 58, 148, 0.75) 100%); 
    z-index: 1;
}

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

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19245E 0%, #5D3A94 100%);
    color: #fff;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 28px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Data Services Section ===== */
.data-services-section {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 80px;
    padding: 30px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #19245E;
}

/* ===== Use Cases Section ===== */
.use-cases-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.use-case-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.use-case-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19245E 0%, #5D3A94 100%);
    color: #fff;
    margin-bottom: 20px;
}

.use-case-icon i {
    font-size: 28px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.use-case-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

.use-case-results {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #19245E;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
}

/* ===== Process Section ===== */
.process-section {
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 23px;
    height: 100%;
    width: 2px;
    background-color: #e0e0e0;
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19245E 0%, #5D3A94 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
}

.process-content {
    padding-left: 20px;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.process-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #19245E;
    z-index: 1;
}

.pricing-card:hover:not(.featured) {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #19245E;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.pricing-header {
    background: linear-gradient(to right, #f8f9fa, #fff);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.pricing-price {
    font-size: 1.1rem;
    color: #666;
}

.pricing-price span {
    font-size: 2rem;
    font-weight: 700;
    color: #19245E;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #666;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features i.fa-check {
    color: #4CAF50;
}

.pricing-features i.fa-times {
    color: #F44336;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 150px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: #fff;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #19245E;
    background-color: #f8f9fa;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-size: 16px;
    transition: transform 0.2s ease;
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .testimonial-content p {
        min-height: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .benefit-card, 
    .service-item,
    .use-case-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-top: 20px;
    }
    
    .process-timeline::before {
        left: 18px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .use-case-results {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .benefit-icon,
    .use-case-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i,
    .use-case-icon i {
        font-size: 24px;
    }
    
    .service-features li {
        font-size: 0.95rem;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .result-value {
        font-size: 1.3rem;
    }
}

/* Animation classes for fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}