/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9f5ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.services-hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.services-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.services-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero .hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-hero .hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.services-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Main Services Section */
.main-services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border: 2px solid #667eea;
    transform: translateY(-10px);
}

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

.service-card.featured:hover {
    transform: translateY(-20px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    text-align: left;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-features i {
    color: #667eea;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.service-mini-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-mini-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-mini-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-mini-card p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Service Areas Section */
.service-areas {
    padding: 100px 0;
    background: #fff;
}

.areas-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.areas-map {
    flex: 1;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
}

.areas-list {
    flex: 1;
}

.areas-list h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.area-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.areas-note {
    color: #718096;
    font-style: italic;
}

.areas-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.areas-note a:hover {
    text-decoration: underline;
}

/* Process Section */
.service-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -50px;
    width: 2px;
    background: #667eea;
    opacity: 0.3;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.service-testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.author-info p {
    color: #718096;
    font-size: 0.9rem;
}

/* FAQ Section */
.service-faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-hero .hero-content {
        max-width: 100%;
    }
    
    .areas-content {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child):after {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        flex: 0 0 50px;
        height: 50px;
        margin-right: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 120px 0 60px;
    }
    
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-hero .hero-content p {
        font-size: 1rem;
    }
    
    .main-services, .additional-services, .service-areas, 
    .service-process, .service-testimonials, .service-faq {
        padding: 60px 0;
    }
    
    .services-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}