/* Modern Services Page Styles */

/* Hero Section */
.services-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.95) 0%, rgba(96, 202, 249, 0.95) 100%);
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg/bg-header.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

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

.services-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Breadcrumb */
.services-breadcrumb {
    margin-top: 30px;
    text-align: center;
}

.services-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.services-breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-breadcrumb li a:hover {
    color: white;
}

.services-breadcrumb li.active {
    color: white;
    font-weight: 600;
}

.services-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.7;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-intro h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #01c057;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-intro h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01c057 0%, #60caf9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.1) 0%, rgba(96, 202, 249, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: linear-gradient(135deg, #01c057 0%, #60caf9 100%);
    transform: scale(1.1);
}

.service-icon-modern i {
    font-size: 40px;
    color: #01c057;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern i {
    color: white;
    transform: scale(1.1);
}

.service-title-modern {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description-modern {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link-modern {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #01c057;
    border: 2px solid #01c057;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link-modern:hover {
    background: linear-gradient(135deg, #01c057 0%, #60caf9 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 192, 87, 0.3);
}

/* Service Center Section */
.services-center-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-center-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg/bg-header.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.services-center-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-center-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.services-center-content h2 span {
    color: #01c057;
}

.services-center-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.services-center-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-center-btn.white {
    background: white;
    color: #01c057;
    border: 2px solid white;
}

.services-center-btn.white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.services-center-btn.green {
    background: linear-gradient(135deg, #01c057 0%, #00a048 100%);
    color: white;
    border: 2px solid transparent;
}

.services-center-btn.green:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(1, 192, 87, 0.4);
}

/* How It Works Section */
.services-process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-process-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-process-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.services-process-intro h2 span {
    color: #01c057;
}

.services-process-intro p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-process-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-process-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-process-content {
    padding: 30px;
    text-align: center;
}

.service-process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, #01c057 0%, #60caf9 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-process-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.service-process-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-process-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #01c057;
    border: 2px solid #01c057;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-process-btn:hover {
    background: linear-gradient(135deg, #01c057 0%, #60caf9 100%);
    color: white;
    border-color: transparent;
}

/* Testimonials & Values Section */
.services-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    color: white;
    position: relative;
}

.services-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg/bg-header.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.services-testimonials-content {
    position: relative;
    z-index: 1;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 48px;
    color: #01c057;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 16px;
    color: #01c057;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #01c057;
    object-fit: cover;
}

.values-accordion-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.values-accordion-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.values-accordion-modern h2 span {
    color: #01c057;
}

.accordion-item-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordion-header-modern {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header-modern:hover {
    background: rgba(1, 192, 87, 0.1);
}

.accordion-title-modern {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.accordion-icon-modern {
    font-size: 20px;
    color: #01c057;
    transition: transform 0.3s ease;
}

.accordion-item-modern.active .accordion-icon-modern {
    transform: rotate(180deg);
}

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

.accordion-item-modern.active .accordion-content-modern {
    max-height: 500px;
}

.accordion-body-modern {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.services-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #01c057 0%, #00a048 100%);
    color: white;
}

.services-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.services-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.services-cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.services-cta-button {
    flex-shrink: 0;
}

.services-cta-button .btn-default {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.services-cta-button .btn-default.white {
    background: white;
    color: #01c057;
    border: 2px solid white;
}

.services-cta-button .btn-default.white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-hero-content h1 {
        font-size: 48px;
    }
    
    .services-hero-content p {
        font-size: 18px;
    }
    
    .services-intro h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .services-process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .services-center-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .services-hero-section {
        padding: 100px 0 60px;
    }
    
    .services-hero-content h1 {
        font-size: 36px;
    }
    
    .services-hero-content p {
        font-size: 16px;
    }
    
    .services-grid-section,
    .services-center-section,
    .services-process-section,
    .services-testimonials-section {
        padding: 60px 0;
    }
    
    .services-intro h1,
    .services-center-content h2,
    .services-process-intro h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-process-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-text h2 {
        font-size: 28px;
    }
}

