/* ============================================
   SERVICE PAGE - Spectacular GSM Service Presentation
   Design distinct de restul magazinului
   Inspirat de zengsm.ro
   ============================================ */

.service-page-wrapper {
    --sp-accent: #6366f1;
    --sp-accent-light: #818cf8;
    --sp-accent-dark: #4f46e5;
    --sp-success: #10b981;
    --sp-warning: #f59e0b;
    --sp-cyan: #06b6d4;
    padding: 0 0 5rem;
    position: relative;
    font-family: var(--font-main, 'Outfit', sans-serif);
}

.service-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-page-wrapper h1, .service-page-wrapper h2, .service-page-wrapper h3, .service-page-wrapper h4 {
    font-family: var(--font-heading, var(--font-main), 'Outfit', sans-serif);
    margin: 0 0 0.5em 0;
    line-height: 1.3;
}

.service-page-wrapper p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

/* Hero - Folosește hero-section din store.css, se integrează cu designul */
.service-hero.hero-section {
    margin: 0 -1.5rem 3rem;
    border-radius: var(--radius-xl, 20px);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.service-hero-content-inner .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.service-hero .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Badges */
.service-trust-badges {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    text-align: center;
}

.service-trust-badges-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.service-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.5));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 100px;
    color: var(--text-primary, #f8fafc);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-trust-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--sp-accent);
    transform: translateY(-2px);
}

.service-trust-badge i {
    color: var(--sp-accent);
    font-size: 1.25rem;
}

/* Section Header - titlu + subtitlu centrate ca bloc */
.service-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.service-section-header .service-section-title,
.service-section-header .service-section-subtitle,
.service-section-header .hero-title,
.service-section-header .hero-subtitle,
.service-section-header .service-cta-final-title,
.service-section-header .service-cta-final-subtitle {
    width: 100%;
    max-width: 720px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.service-section-header .service-section-subtitle {
    margin-bottom: 0;
}

.service-section-header .service-cta-final-buttons {
    margin-top: 2rem;
}

/* Section Titles */
.service-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary, #f8fafc);
    text-align: center;
}

.service-section-subtitle {
    text-align: center !important;
    color: var(--text-secondary, rgba(248, 250, 252, 0.75));
    margin: 0.5rem auto 0 auto;
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Service Cards */
.service-cards-section {
    margin-bottom: 5rem;
    text-align: center;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card-item {
    display: block;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary, #f8fafc);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, var(--sp-accent));
}

.service-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--card-accent, var(--sp-accent));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}


.service-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: var(--card-accent, var(--sp-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1.25rem auto;
}

.service-card-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-item p {
    color: var(--text-secondary, rgba(248, 250, 252, 0.7));
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--card-accent, var(--sp-accent));
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: gap 0.3s ease, color 0.3s ease;
    font-family: inherit;
}

.service-card-item {
    text-align: center;
}

.service-card-item:hover .service-card-detail-btn {
    gap: 0.75rem;
    color: var(--sp-accent-light, #818cf8);
}

/* Service card detail panels - accordion */
.service-card-details {
    margin-top: 3rem;
}

.service-detail-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    margin-bottom: 0;
}

.service-detail-panel.active {
    max-height: 1200px;
    opacity: 1;
    margin-bottom: 2rem;
}

.service-detail-panel-inner {
    padding: 2rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: var(--radius-lg, 16px);
    border-left: 4px solid var(--panel-accent, var(--sp-accent));
    text-align: left;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--text-primary, #f8fafc);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-detail-title i {
    color: var(--panel-accent, var(--sp-accent));
}

.service-detail-content {
    color: var(--text-secondary, rgba(248, 250, 252, 0.85));
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-price-from {
    font-size: 1.25rem;
    color: var(--text-primary, #f8fafc);
    margin-bottom: 1rem;
}

.service-detail-prices h4 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-primary, #f8fafc);
}

.service-detail-price-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.service-detail-price-table td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary, rgba(248, 250, 252, 0.8));
}

.service-detail-price-table td:last-child {
    text-align: right;
    color: var(--panel-accent, var(--sp-accent));
}

.service-detail-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-detail-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: var(--text-primary, #f8fafc);
}

.service-detail-items li i {
    color: var(--sp-success, #10b981);
    flex-shrink: 0;
}

.service-detail-fallback {
    color: var(--text-secondary, rgba(248, 250, 252, 0.8));
    margin-bottom: 0.5rem;
}

.service-detail-hint {
    font-size: 0.9rem;
    color: var(--text-muted, rgba(248, 250, 252, 0.5));
    margin-bottom: 1.5rem;
}

.service-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Why Choose Us */
.service-why-choose {
    margin-bottom: 5rem;
    text-align: center;
}

.service-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-why-card {
    padding: 1.75rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 16px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
    text-align: center;
}

.service-why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-why-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
}

.service-why-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sp-accent), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-accent);
    font-size: 1.25rem;
    margin: 0 auto 1rem auto;
}

.service-why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #f8fafc);
}

.service-why-card p {
    color: var(--text-secondary, rgba(248, 250, 252, 0.7));
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Brands */
.service-brands {
    margin-bottom: 5rem;
    text-align: center;
}

.service-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
}

.service-brand-card {
    padding: 1rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.5));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 12px);
    text-align: center;
    transition: all 0.3s ease;
}

.service-brand-card:hover {
    border-color: var(--sp-accent);
    transform: translateY(-2px);
}

.service-brand-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.service-brand-logo img {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    object-position: center;
}

.service-brand-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sp-accent), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.service-brand-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary, #f8fafc);
}

.service-brand-card p {
    font-size: 0.75rem;
    color: var(--text-secondary, rgba(248, 250, 252, 0.65));
    margin: 0;
    line-height: 1.35;
}

/* Stats */
.service-stats {
    margin-bottom: 5rem;
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

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

.service-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sp-accent), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary, rgba(248, 250, 252, 0.7));
    margin-top: 0.5rem;
}

/* Testimonials */
.service-testimonials {
    margin-bottom: 5rem;
    text-align: center;
}

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

.service-testimonial-card {
    padding: 1.5rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 16px);
    transition: all 0.3s ease;
    text-align: center;
}

.service-testimonial-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.service-testimonial-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-testimonial-text {
    color: var(--text-secondary, rgba(248, 250, 252, 0.85));
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.service-testimonial-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-testimonial-author {
    font-weight: 700;
    color: var(--text-primary, #f8fafc);
}

.service-testimonial-source {
    font-size: 0.8rem;
    color: var(--text-secondary, rgba(248, 250, 252, 0.6));
}

/* Infographics */
.service-infographics {
    margin-bottom: 5rem;
    text-align: center;
}

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

.service-infographic-card {
    padding: 1.5rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 16px);
    transition: all 0.3s ease;
}

.card-style-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.card-style-solid {
    background: rgba(30, 41, 59, 0.8);
}

.card-style-outlined {
    background: transparent;
    border: 2px solid var(--sp-accent);
}

.card-style-gradient {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
}

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

.service-infographic-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-infographic-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent, var(--sp-accent)), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-infographic-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary, #f8fafc);
}

.service-infographic-card {
    text-align: center;
}

.service-infographic-body p {
    color: var(--text-secondary, rgba(248, 250, 252, 0.8));
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-infographic-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-infographic-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary, #f8fafc);
}

.service-infographic-items li i {
    color: var(--sp-success);
}

/* SEO Blocks */
.service-seo-blocks {
    margin-bottom: 5rem;
    text-align: center;
}

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

.service-seo-block {
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #f8fafc);
    text-align: center;
}

.service-seo-content {
    color: var(--text-secondary, rgba(248, 250, 252, 0.8));
    line-height: 1.8;
    text-align: center;
}

.service-seo-content h2, .service-seo-content h3 {
    color: var(--text-primary, #f8fafc);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Final */
.service-cta-final {
    margin-bottom: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.service-cta-final-content {
    text-align: center;
}

.service-cta-final-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary, #f8fafc);
    text-align: center;
}

.service-cta-final-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary, rgba(248, 250, 252, 0.85));
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

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

.service-cta-final-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
}

/* Contact */
.service-contact {
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-contact-card {
    padding: 1.25rem;
    background: var(--bg-card, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-md, 12px);
    text-align: center;
}

.service-contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sp-accent), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.service-contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary, #f8fafc);
}

.service-contact-card p {
    color: var(--text-secondary, rgba(248, 250, 252, 0.8));
    font-size: 0.95rem;
    margin: 0;
}

.service-contact-card a {
    color: var(--sp-accent-light);
    text-decoration: none;
}

.service-contact-card a:hover {
    text-decoration: underline;
}

/* Animate on scroll */
.service-page-wrapper .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-page-wrapper .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for cards */
.service-why-grid .service-why-card[data-delay="0"].visible { transition-delay: 0s; }
.service-why-grid .service-why-card[data-delay="1"].visible { transition-delay: 0.1s; }
.service-why-grid .service-why-card[data-delay="2"].visible { transition-delay: 0.2s; }
.service-why-grid .service-why-card[data-delay="3"].visible { transition-delay: 0.3s; }
.service-why-grid .service-why-card[data-delay="4"].visible { transition-delay: 0.4s; }
.service-why-grid .service-why-card[data-delay="5"].visible { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
    .service-hero.hero-section {
        margin: 0 -1rem 2rem;
        padding: 3rem 1rem;
    }

    .service-hero .hero-cta {
        flex-direction: column;
    }

    .service-hero .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .service-trust-badges-inner {
        flex-direction: column;
    }

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

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

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

    .service-stat-value {
        font-size: 2rem;
    }

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

    .service-cta-final-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Light mode overrides */
html.light-mode .service-page-wrapper .service-card-item,
html.light-mode .service-page-wrapper .service-brand-card,
html.light-mode .service-page-wrapper .service-why-card,
html.light-mode .service-page-wrapper .service-testimonial-card,
html.light-mode .service-page-wrapper .service-infographic-card,
html.light-mode .service-page-wrapper .service-contact-card,
html.light-mode .service-page-wrapper .service-trust-badge {
    background: var(--bg-card);
    border-color: var(--border-color);
}

html.light-mode .service-page-wrapper .service-section-title,
html.light-mode .service-page-wrapper .service-card-item h3,
html.light-mode .service-page-wrapper .service-brand-card h4,
html.light-mode .service-page-wrapper .service-why-card h3,
html.light-mode .service-page-wrapper .service-testimonial-author,
html.light-mode .service-page-wrapper .service-infographic-header h3,
html.light-mode .service-page-wrapper .service-contact-card h3 {
    color: var(--text-primary);
}

html.light-mode .service-page-wrapper .service-section-subtitle,
html.light-mode .service-page-wrapper .service-card-item p,
html.light-mode .service-page-wrapper .service-brand-card p,
html.light-mode .service-page-wrapper .service-why-card p,
html.light-mode .service-page-wrapper .service-testimonial-text,
html.light-mode .service-page-wrapper .service-infographic-body p,
html.light-mode .service-page-wrapper .service-contact-card p {
    color: var(--text-secondary);
}

/* Stats - light mode: text închis pe fundal clar */
html.light-mode .service-page-wrapper .service-stats {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

html.light-mode .service-page-wrapper .service-stat-value {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html.light-mode .service-page-wrapper .service-stat-label {
    color: var(--text-secondary);
}

html.light-mode .service-page-wrapper .service-detail-panel-inner {
    background: var(--bg-card);
    border-color: var(--border-color);
}

html.light-mode .service-page-wrapper .service-detail-title,
html.light-mode .service-page-wrapper .service-detail-prices h4,
html.light-mode .service-page-wrapper .service-detail-items li {
    color: var(--text-primary);
}

html.light-mode .service-page-wrapper .service-detail-content,
html.light-mode .service-page-wrapper .service-detail-fallback,
html.light-mode .service-page-wrapper .service-detail-price-table td {
    color: var(--text-secondary);
}
