/* Services Main Page */
.services-hero,
.service-hero {
    position: relative;
    padding: calc(var(--header-height) + 6rem) 0 6rem;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.98) 0%, rgba(38, 38, 38, 0.95) 100%);
    overflow: hidden;
}

.services-hero::before,
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/bg/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
    animation: subtleMove 30s linear infinite;
}

@keyframes subtleMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.services-hero__content,
.service-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-hero__icon,
.service-hero__icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    display: inline-block;
    padding: 2rem;
    border-radius: 50%;
    background: rgba(242, 187, 19, 0.1);
    box-shadow: 
        0 0 0 10px rgba(242, 187, 19, 0.05),
        0 0 30px rgba(242, 187, 19, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.services-hero__title,
.service-hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-hero__description {
    font-size: 1.25rem;
    color: var(--text-color-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Hero Badge */
.services-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(242, 187, 19, 0.1);
    border: 1px solid rgba(242, 187, 19, 0.2);
    border-radius: 9999px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-showcase__card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 3rem;
    padding: 3rem;
    position: relative;
}

.service-showcase__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(38, 38, 38, 0.98) 100%);
}

.service-showcase__icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(242, 187, 19, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-showcase__card:hover .service-showcase__icon {
    transform: scale(1.1);
    background: rgba(242, 187, 19, 0.15);
    box-shadow: 0 0 30px rgba(242, 187, 19, 0.2);
}

.service-showcase__content {
    flex: 1;
}

.service-showcase__title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-showcase__subtitle {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-showcase__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-showcase__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color-light);
    font-size: 1rem;
}

.service-showcase__feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-showcase__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-showcase__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-showcase__button:hover {
    transform: translateX(5px);
    background: #f2bb13;
}

.service-showcase__button i {
    transition: transform 0.3s ease;
}

.service-showcase__button:hover i {
    transform: translateX(5px);
}

/* Service Cards Grid */
.service-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(242, 187, 19, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 100px;
    height: 100px;
    background: rgba(242, 187, 19, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-card__icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(242, 187, 19, 0.2);
    transform: scale(1.1);
}

.service-card:hover .service-card__icon i {
    transform: scale(1.1);
}

.service-card__title {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.service-card__subtitle {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: gap 0.3s ease;
}

.service-card__link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__link {
    gap: 0.75rem;
}

.service-card:hover .service-card__link i {
    transform: translateX(5px);
}

/* Tech Tags */
.service-hero__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(38, 38, 38, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.tech-tag {
    background: rgba(242, 187, 19, 0.15);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 187, 19, 0.2);
}

.tech-tag:hover {
    background: rgba(242, 187, 19, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 187, 19, 0.15);
}

/* Benefits Section */
.service-benefits {
    padding: 6rem 0;
    background: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-card__content {
    flex: 1;
}

.benefit-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-card__description {
    color: var(--text-color-light);
    line-height: 1.6;
}

/* Features Section */
.service-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(38, 38, 38, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.service-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/bg/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(242, 187, 19, 0.1);
    border: 1px solid rgba(242, 187, 19, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(242, 187, 19, 0.15);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(242, 187, 19, 0.3);
}

.feature-card__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(242, 187, 19, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    background: rgba(242, 187, 19, 0.2);
}

.feature-card__title {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Cases Section */
.service-cases {
    padding: 6rem 0;
    background: var(--dark-color);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.case-card__content {
    flex: 1;
}

.case-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.case-card__description {
    color: var(--text-color-light);
    line-height: 1.6;
}

/* CTA Section */
.service-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f2bb13 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-cta__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(38, 38, 38, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: transform 0.3s;
}

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

.button--ghost {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-card__icon i {
        font-size: 2.5rem;
    }

    .service-card__title {
        font-size: 1.5rem;
    }

    .services-showcase {
        padding: 4rem 0;
    }

    .service-showcase__title {
        font-size: 1.75rem;
    }

    .service-showcase__subtitle {
        font-size: 1rem;
    }

    .service-showcase__features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .services-hero,
    .service-hero {
        padding: calc(var(--header-height) + 3rem) 0 3rem;
    }

    .services-hero__icon,
    .service-hero__icon {
        font-size: 3rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .services-hero__title,
    .service-hero__title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .services-hero__description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .tech-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        min-height: 150px;
        padding: 1rem;
    }

    .feature-card__icon {
        font-size: 2rem;
        padding: 0.75rem;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .service-showcase__card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .service-showcase__icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .service-showcase__tech {
        margin-bottom: 1.5rem;
    }

    .service-showcase__button {
        width: 100%;
        justify-content: center;
    }
} 