/* =========================================
   MANAGED NOC SERVICES PAGE STYLES
========================================= */

/* Color Variables */
:root {
    --noc-dark: #0b121e;
    --noc-dark-alt: #1a2a3a;
    --noc-cyan: #4fe3d7;
    --noc-teal: #0e78c8;
    --noc-bg-light: #0e1116;
    --noc-text: #e6ebef;
    --noc-text-muted: #bfc7cf;
}

/* ==================== HERO SECTION ==================== */
.noc-hero {
    background: linear-gradient(135deg, var(--noc-dark) 0%, var(--noc-dark-alt) 50%, var(--noc-bg-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.noc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 227, 215, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 120, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.noc-badge {
    display: inline-block;
    background: rgba(79, 227, 215, 0.1);
    border: 1px solid rgba(79, 227, 215, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--noc-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.noc-badge i {
    margin-right: 8px;
}

.noc-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.noc-hero-subtitle {
    font-size: 1.2rem;
    color: var(--noc-text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.noc-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.noc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.noc-btn i {
    font-size: 1.1rem;
}

.noc-btn-primary {
    background: var(--noc-cyan);
    color: var(--noc-dark);
    border: 2px solid var(--noc-cyan);
}

.noc-btn-primary:hover {
    background: transparent;
    color: var(--noc-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.3);
}

.noc-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--noc-teal);
}

.noc-btn-outline:hover {
    background: var(--noc-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 120, 200, 0.3);
}

.noc-visual {
    height: 450px;
    width: 100%;
}

/* ==================== BASE SECTION ==================== */
.noc-section {
    padding: 80px 0;
    background: #f8f9fb;
    position: relative;
}

.noc-section:nth-child(even) {
    background: white;
}

.noc-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--noc-dark);
    margin-bottom: 15px;
}

.noc-subtitle {
    font-size: 1.1rem;
    color: var(--noc-text-muted);
    margin-bottom: 0;
}

.noc-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ==================== WHAT IS NOC SECTION ==================== */
.noc-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.noc-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.noc-image-box:hover .noc-img {
    transform: scale(1.05);
}

.noc-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.noc-highlight-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.noc-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.15);
}

.noc-highlight-icon {
    font-size: 2.5rem;
    color: var(--noc-cyan);
    margin-bottom: 15px;
}

.noc-highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin-bottom: 5px;
}

.noc-highlight-item p {
    font-size: 0.9rem;
    color: var(--noc-text-muted);
    margin: 0;
}

/* ==================== WATCHTOWER APPROACH ==================== */
.noc-watchtower {
    background: linear-gradient(135deg, var(--noc-dark) 0%, var(--noc-dark-alt) 100%);
}

.noc-watchtower .noc-section-title,
.noc-watchtower .noc-subtitle {
    color: white;
}

.noc-approach-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 227, 215, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.noc-approach-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--noc-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 227, 215, 0.2);
}

.noc-approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--noc-cyan), var(--noc-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--noc-dark);
}

.noc-approach-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.noc-approach-card p {
    font-size: 1rem;
    color: var(--noc-text-muted);
    margin: 0;
}

/* ==================== CORE DELIVERABLES ==================== */
.noc-deliverable-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.noc-deliverable-card:hover {
    border-color: var(--noc-cyan);
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.15);
    transform: translateX(5px);
}

.noc-deliverable-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 227, 215, 0.1), rgba(14, 120, 200, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--noc-teal);
}

.noc-deliverable-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin-bottom: 10px;
}

.noc-deliverable-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ==================== PROCESS TIMELINE ==================== */
.noc-process {
    background: linear-gradient(180deg, #f8f9fb 0%, white 100%);
}

.noc-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding: 40px 0;
}

.noc-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--noc-cyan), var(--noc-teal), var(--noc-cyan));
    z-index: 0;
}

.noc-timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.noc-timeline-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--noc-cyan), var(--noc-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 5px 20px rgba(79, 227, 215, 0.4);
    transition: all 0.3s ease;
}

.noc-timeline-item:hover .noc-timeline-number {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.6);
}

.noc-timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin-bottom: 8px;
}

.noc-timeline-content p {
    font-size: 0.95rem;
    color: var(--noc-text-muted);
    margin: 0;
}

/* ==================== TOOLS & TECHNOLOGIES ==================== */
.noc-tech-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.noc-tech-card:hover {
    border-color: var(--noc-cyan);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(79, 227, 215, 0.2);
}

.noc-tech-card i {
    font-size: 3.5rem;
    color: var(--noc-teal);
    margin-bottom: 20px;
}

.noc-tech-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin-bottom: 10px;
}

.noc-tech-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* ==================== INDUSTRY CARDS ==================== */
.noc-industries {
    background: linear-gradient(180deg, white 0%, #f8f9fb 100%);
}

.noc-industry-card {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.noc-industry-card:hover {
    background: linear-gradient(135deg, var(--noc-dark), var(--noc-dark-alt));
    border-color: var(--noc-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.noc-industry-card i {
    font-size: 3.5rem;
    color: var(--noc-teal);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.noc-industry-card:hover i {
    color: var(--noc-cyan);
    transform: scale(1.1);
}

.noc-industry-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.noc-industry-card:hover h4 {
    color: white;
}

.noc-industry-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    transition: all 0.3s ease;
}

.noc-industry-card:hover p {
    color: var(--noc-text-muted);
}

/* ==================== WHY ZENTRYX ==================== */
.noc-why-us {
    background: white;
}

.noc-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.noc-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(79, 227, 215, 0.05), rgba(14, 120, 200, 0.05));
    border: 1px solid rgba(79, 227, 215, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.noc-trust-item:hover {
    background: linear-gradient(135deg, rgba(79, 227, 215, 0.1), rgba(14, 120, 200, 0.1));
    border-color: var(--noc-cyan);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.15);
}

.noc-trust-item i {
    font-size: 2rem;
    color: var(--noc-teal);
}

.noc-trust-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--noc-dark);
}

/* ==================== FINAL CTA ==================== */
.noc-cta-final {
    background: linear-gradient(135deg, var(--noc-dark) 0%, var(--noc-dark-alt) 50%, var(--noc-bg-light) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.noc-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 227, 215, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(14, 120, 200, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.noc-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.noc-cta-subtitle {
    font-size: 1.2rem;
    color: var(--noc-text-muted);
    margin-bottom: 40px;
}

.noc-btn-light {
    background: white;
    color: var(--noc-dark);
    border: 2px solid white;
}

.noc-btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.noc-btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.noc-btn-outline-light:hover {
    background: white;
    color: var(--noc-dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .noc-hero-title {
        font-size: 2.5rem;
    }

    .noc-section-title {
        font-size: 2rem;
    }

    .noc-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .noc-timeline::before {
        display: none;
    }

    .noc-trust-grid {
        grid-template-columns: 1fr;
    }

    .noc-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .noc-hero {
        padding: 80px 0 60px;
    }

    .noc-hero-title {
        font-size: 2rem;
    }

    .noc-section {
        padding: 60px 0;
    }

    .noc-cta-group {
        flex-direction: column;
    }

    .noc-btn {
        width: 100%;
        justify-content: center;
    }

    .noc-cta-title {
        font-size: 2rem;
    }

    .noc-visual {
        height: 300px;
    }
}

/* ==================== FAQ SECTION ==================== */
.noc-faq-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.noc-faq-section .noc-section-title {
    margin-bottom: 50px;
}

.noc-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.noc-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.noc-faq-item:hover {
    box-shadow: 0 10px 30px rgba(79, 227, 215, 0.1);
    border-color: var(--noc-cyan);
}

.noc-faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.noc-faq-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--noc-dark);
    margin: 0;
    padding-right: 20px;
}

.noc-faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(79, 227, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noc-teal);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.noc-faq-item.active .noc-faq-icon {
    background: var(--noc-cyan);
    color: var(--noc-dark);
    transform: rotate(45deg);
}

.noc-faq-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.noc-faq-item.active .noc-faq-body {
    padding: 0 30px 25px;
    max-height: 500px;
}

.noc-faq-body p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-top: 10px;
}