/* ================================================
   Service Detail Page Styles
   Based on feature detail page design (vm-prod-detail.css)
   ================================================ */

/* CSS Variables */
:root {
    --service-primary: #2878B6;
    --service-primary-dark: #1f3c57;
    --service-accent: #E9B01F;
    --service-accent-dark: #d4a017;
    --service-text: #333;
    --service-text-light: #666;
    --service-bg-light: #f8fafc;
    --service-border: #e5e7eb;
}

/* Reset for service pages */
.service-page {
    background-color: #FFF;
}

.service-page section {
    padding: 20px !important;
}

/* Container */
.svc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   Hero Section
   ================================================ */
.svc-hero-section {
    background: linear-gradient(135deg, var(--service-primary) 0%, var(--service-primary-dark) 100%);
    color: white;
    text-align: left;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 20px;
}

.svc-hero-section .svc-container {
    max-width: 1200px;
    margin: 80px auto;
}

.svc-breadcrumb {
    font-size: 1.6rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.svc-breadcrumb a {
    color: var(--service-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.svc-breadcrumb a:hover {
    opacity: 0.8;
}

.svc-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.svc-hero-subtitle {
    font-size: 1.8rem;
    max-width: 700px;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.4;
}

.svc-hero-description {
    font-size: 1.6rem;
    max-width: 800px;
    opacity: 0.9;
    line-height: 1.6;
}

.svc-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-dark) 100%);
    color: #333;
    padding: 14px 32px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.svc-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 176, 31, 0.4);
}

/* ================================================
   Main Content Layout
   ================================================ */
.svc-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-content-left {
    background: white;
}

.svc-content-right {
    background: var(--service-bg-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* ================================================
   Section Titles
   ================================================ */
.svc-section-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--service-text);
}

/* ================================================
   Overview Section
   ================================================ */
.svc-overview-section {
    margin-bottom: 50px;
}

.svc-overview-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--service-text-light);
}

.svc-overview-text p {
    margin-bottom: 20px;
}

/* ================================================
   Features Grid
   ================================================ */
.svc-features-section {
    margin-bottom: 50px;
}

.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--service-bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--service-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.svc-feature-icon {
    background: linear-gradient(135deg, var(--service-primary) 0%, #3488c6 100%);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.svc-feature-icon img {
    width: 28px;
    height: 28px;
}

.svc-feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--service-text);
}

.svc-feature-content p {
    font-size: 1.4rem;
    color: var(--service-text-light);
    line-height: 1.5;
}

/* ================================================
   Offerings Section (What's Included)
   ================================================ */
.svc-offerings-section {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 12px;
}

.svc-offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-offering-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.svc-offering-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-offering-check svg {
    width: 14px;
    height: 14px;
    color: white;
}

.svc-offering-text {
    font-size: 1.5rem;
    color: var(--service-text);
    line-height: 1.4;
}

/* ================================================
   Benefits Section
   ================================================ */
.svc-benefits-section {
    margin-bottom: 50px;
}

.svc-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.svc-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.svc-benefit-item:hover {
    transform: translateX(5px);
}

.svc-benefit-number {
    background: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-dark) 100%);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.svc-benefit-text {
    font-size: 1.5rem;
    color: var(--service-text);
    line-height: 1.5;
}

/* ================================================
   Sidebar Styles
   ================================================ */
.svc-sidebar-section {
    margin-bottom: 30px;
}

.svc-sidebar-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--service-text);
}

/* Related Services */
.svc-related-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--service-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.svc-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--service-primary);
}

.svc-related-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--service-primary) 0%, #3488c6 100%);
}

.svc-related-icon.consulting {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.svc-related-icon.intelligence {
    background: linear-gradient(135deg, #2878B6 0%, #1f3c57 100%);
}

.svc-related-icon.training {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.svc-related-icon.support {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.svc-related-icon.hosting {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.svc-related-icon svg,
.svc-related-icon img {
    width: 20px;
    height: 20px;
    color: white;
}

.svc-related-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--service-text);
}

.svc-related-content p {
    font-size: 1.2rem;
    color: var(--service-text-light);
}

/* Contact Section */
.svc-contact-section {
    background: linear-gradient(135deg, var(--service-primary) 0%, var(--service-primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.svc-contact-section h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.svc-contact-section p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.svc-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-btn-primary {
    display: block;
    background: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-dark) 100%);
    color: #333;
    padding: 12px 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.svc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 176, 31, 0.4);
}

.svc-btn-outline {
    display: block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.svc-btn-outline:hover {
    background: white;
    color: var(--service-primary);
}

/* ================================================
   CTA Bottom Section
   ================================================ */
.svc-cta-section {
    background: linear-gradient(135deg, var(--service-primary) 0%, var(--service-primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.svc-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFF;
}

.svc-cta-section p {
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.svc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================================
   Explore Block Override
   ================================================ */
.service-page .explore-section {
    margin-top: 0;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .svc-main-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }

    .svc-features-grid {
        grid-template-columns: 1fr;
    }

    .svc-offerings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .svc-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .svc-content-right {
        position: static;
    }

    .svc-hero-section {
        min-height: 350px;
    }

    .svc-hero-title {
        font-size: 2.8rem;
    }

    .svc-hero-subtitle {
        font-size: 1.6rem;
    }

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

    .svc-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .svc-feature-icon {
        margin: 0 auto;
    }

    .svc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .svc-cta-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .svc-offerings-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .svc-hero-title {
        font-size: 2.4rem;
    }

    .svc-hero-section .svc-container {
        margin-bottom: 50px;
    }

    .svc-feature-content h3 {
        font-size: 1.6rem;
    }

    .svc-benefit-item {
        padding: 15px;
    }
}

/* ================================================
   Animation Classes
   ================================================ */
.svc-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.svc-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
   