/* services.css - Automobilių kondicionierių paslaugų puslapiui */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1a2639 0%, #2c3e50 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>');
    background-size: 60px 60px;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.services-hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2ecc71;
    line-height: 1.2;
}

.stat-label {
    font-size: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Services Grid */
.main-services {
    padding: 70px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}



.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 45px;
    height: 45px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a2639;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: 700;
    margin-right: 8px;
}

.service-btn {
    background: #2ecc71;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    margin-top: auto;
}



/* Additional Services */
.additional-services {
    padding: 70px 0;
    background: white;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.additional-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}


.additional-icon {
    margin-bottom: 20px;
}

.additional-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s;
}

.additional-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a2639;
}

.additional-item p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

/* Service Process */
.service-process {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 20px;
    font-size: 32px;
    color: #2ecc71;
    font-weight: 300;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #2ecc71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a2639;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.process-note {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-services {
    padding: 70px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2639;
    position: relative;
    padding-left: 25px;
}

.faq-item h4::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 800;
    font-size: 20px;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding-left: 25px;
}

.faq-item p::before {
    content: "A";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 800;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 38px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }
    .faq-grid {
    gap: 10px;
}
    .services-hero h1 {
        font-size: 32px;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px 20px;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 28px;
    }
    
    .services-hero p {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}