/* Modern Service Pages Styles */

:root {
    --primary-color: #18cb96;
    --secondary-color: #0ea271;
    --primary-gradient: linear-gradient(135deg, #18cb96 0%, #0ea271 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Hero Section */
.service-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #18cb96 0%, #0ea271 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

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

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #fff;
}

.feature-item span {
    font-size: 1.1rem;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-animation {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.modern-breadcrumb {
    margin-bottom: 2rem;
}

.modern-breadcrumb .breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
}

.modern-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Services Grid */
.services-grid {
    padding: 100px 0;
}

.service-card {
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

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

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.service-card p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #636e72;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #2d3436;
}

.process-step p {
    color: #636e72;
    margin: 0;
}

/* Results Section */
.results-section {
    padding: 100px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.result-item {
    text-align: left;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: #636e72;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.cta-section p {
    font-size: 1.1rem;
    color: #636e72;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-around;
    }

    .min-vh-75 {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-animation {
        margin-top: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2rem;
    }

    .hero-tag {
        font-size: 0.8rem;
    }

    .feature-item span {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .service-hero {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-step {
        margin-bottom: 1rem;
    }
}

/* Animations */
[data-aos] {
    transition: var(--transition);
}

.img-fluid {
    border-radius: 20px;
}

/* Service Pages Styles */

/* Hero Section */
.service-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Features Section */
.feature-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Service Details */
.service-details {
    background-color: #f8f9fa;
}

.service-list .service-item {
    margin-bottom: 30px;
}

.service-list .service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* FAQ Section */
.service-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.service-faq .accordion-button {
    padding: 20px;
    font-weight: 600;
    background: #fff;
    border: none;
    box-shadow: none;
}

.service-faq .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
}

.service-faq .accordion-body {
    padding: 20px;
    background: #fff;
}

/* Animations */
.feature-box,
.service-item,
.process-item {
    transition: all 0.3s ease;
}

.feature-box:hover,
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Utility Classes */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: #fff;
} 
} 