/* Hero Section */
.service-hero {
    position: relative;
    height: 70vh;
    background: url('../assets/MAFINA/mafina-images-pack/img4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 6rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Customer Approach */
.customer-approach {
    padding: 5rem 0;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    padding-right: 2rem;
}

.approach-list {
    margin: 2rem 0;
    list-style: none;
}

.approach-list li {
    display: flex;
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    align-items: flex-start;
}

.approach-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.approach-list h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.approach-list p {
    color: var(--text-color);
    line-height: 1.5;
}

.approach-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: ock;
}

/* Service Features */
.service-features {
    padding: 5rem 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: var(--text-color);
    line-height: 1.5;
}

/* Customer Testimonial */
.customer-testimonial {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: black;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote i {
    font-size: 3rem;
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: 0;
}

blockquote {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    padding-left: 4rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 4rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Culture */
.service-culture {
    padding: 5rem 0;
}

.culture-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-number {
    position: absolute;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-light);
    top: -1rem;
    right: 1rem;
    line-height: 1;
    z-index: 0;
}

.culture-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--dark-color);
}

.culture-description {
    color: var(--text-color);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Digital Services */
.digital-services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.digital-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.digital-image img {
    width: 100%;
    height: auto;
    display: block;
}

.digital-features {
    margin: 2rem 0;
    list-style: none;
}

.digital-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.digital-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.service-cta {
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button-primary {
    background: var(--primary-color);
    color: white;
}

.cta-button-primary:hover {
    background: var(--primary-dark);
}

.cta-button-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-secondary:hover {
    background: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .approach-content,
    .testimonial-content,
    .digital-content {
        grid-template-columns: 1fr;
    }
    
    .approach-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    blockquote {
        font-size: 1.4rem;
        padding-left: 2rem;
    }
    
    .testimonial-author {
        padding-left: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}