/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--light);
}

/* Mobile Responsive - Services Grid */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Page Styles */

.service-detail-page {
    min-height: 100vh;
    color: var(--text, #ffffff);
    background: var(--dark, #0a0a0a);
}

/* Service Hero Section */
.service-hero {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, rgba(140, 255, 102, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-bottom: 1px solid rgba(140, 255, 102, 0.2);
}

.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero .breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-hero .breadcrumb a {
    color: var(--primary, #8cff66);
    text-decoration: none;
    font-weight: 500;
}

.service-hero .breadcrumb a:hover {
    text-decoration: underline;
    color: #a3ff7f;
}

.service-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-category-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 3.5rem;
}

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

.service-tags-hero {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-tags-hero .tag {
    background: rgba(140, 255, 102, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(140, 255, 102, 0.3);
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Description */
.service-description {
    padding: 4rem 2rem;
}

.service-description .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.description-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.service-features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-features h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(140, 255, 102, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-4px);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.85;
    line-height: 1.6;
}

.feature-value {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pricing Section */
.service-pricing {
    padding: 4rem 2rem;
}

.service-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-pricing h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(140, 255, 102, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(140, 255, 102, 0.1);
}

.pricing-card.featured {
    background: rgba(140, 255, 102, 0.05);
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-description {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.plan-price {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    opacity: 0.7;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.plan-price-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Service Meta Info */
.service-meta-info {
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.service-meta-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.meta-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(140, 255, 102, 0.2);
}

.meta-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.meta-item p {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Related Services */
.related-services {
    padding: 4rem 2rem;
}

.related-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-services h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.related-services .service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(140, 255, 102, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.related-services .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.related-services .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.related-services .service-card p {
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-badge {
    display: inline-block;
    background: rgba(140, 255, 102, 0.15);
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.service-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(140, 255, 102, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 2.25rem;
    }

    .features-grid,
    .pricing-grid,
    .meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-hero {
        padding: 2rem 1rem;
    }

    .service-hero h1 {
        font-size: 1.875rem;
        flex-direction: column;
        align-items: start;
    }

    .service-icon {
        font-size: 2.5rem;
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}
