/* Network Troubleshooting Service Page Specific Styles */
:root {
    --primary-purple: #6A0DAD;
    --primary-dark: #5a0a95;
    --secondary-purple: #8B5FBF;
    --accent-purple: #9D4EDD;
    --text-dark: #333333;
    --text-light: #666666;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
}

/* Service Hero Section */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Service Hero Text */
.service-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.service-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Feature Badges */
.service-hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Service Hero Visual */
.service-hero-visual {
    animation: fadeInRight 0.8s ease-out;
}

.service-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-container:hover .service-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 13, 173, 0.1), transparent);
}

/* Network Troubleshooter Section */
.network-troubleshooter {
    padding: 80px 0;
    background: var(--background-light);
}

.troubleshooter-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.troubleshooter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.troubleshooter-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.troubleshooter-steps {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.issue-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.device-options,
.timeline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.issue-option,
.device-option,
.timeline-option {
    background: var(--background-light);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.issue-option:hover,
.device-option:hover,
.timeline-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-medium);
}

.issue-option.selected,
.device-option.selected,
.timeline-option.selected {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.issue-option span,
.device-option span,
.timeline-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Troubleshooter Result */
.troubleshooter-result {
    display: none;
    text-align: left;
}

.troubleshooter-result.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light);
}

.result-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.severity-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.severity-badge.moderate {
    background: var(--warning-orange);
    color: white;
}

.severity-badge.minor {
    background: var(--success-green);
    color: white;
}

.severity-badge.critical {
    background: var(--error-red);
    color: white;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.quick-fixes h4,
.expert-solution h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.fix-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fix-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.solution-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
}

.solution-type {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.type-icon {
    font-size: 2rem;
}

.type-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.type-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.solution-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.solution-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

.solution-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.solution-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.solution-pricing .duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.troubleshooter-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.details-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.details-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features List */
.features-list h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-purple);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Common Issues */
.common-issues {
    margin-bottom: 4rem;
}

.common-issues h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.issue-category {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.issue-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.issue-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

.issue-category ul {
    list-style: none;
    padding: 0;
}

.issue-category li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.issue-category li:before {
    content: '🔧';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Troubleshooting Process */
.troubleshooting-process {
    margin-bottom: 4rem;
}

.troubleshooting-process h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.process-flow {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-package-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.service-package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.package-price .currency {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 25px;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Emergency Support */
.emergency-support {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.emergency-support h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.emergency-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.emergency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-text {
    display: flex;
    flex-direction: column;
}

.emergency-text strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.emergency-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Remote Support */
.remote-support {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.remote-support h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.remote-support p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.remote-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.5rem;
}

.contact-sidebar {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-sidebar p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: var(--primary-purple);
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--background-light);
}

.tools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tool-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta .btn-primary {
    background: white;
    color: var(--primary-purple);
}

.service-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.service-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-purple);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-hero-content {
        gap: 40px;
    }
    
    .details-grid {
        gap: 40px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero-text {
        order: 2;
    }
    
    .service-hero-visual {
        order: 1;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-title {
        font-size: 2.8rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-title {
        font-size: 2.3rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .troubleshooter-steps {
        padding: 30px 20px;
    }
    
    .issue-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .device-options,
    .timeline-options {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .remote-benefits {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .troubleshooter-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions,
    .cta-actions,
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-hero-features {
        justify-content: center;
    }
    
    .feature-badge {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .issue-options {
        grid-template-columns: 1fr;
    }
    
    .details-content h2,
    .tools-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .issues-grid {
        gap: 20px;
    }
    
    .feature-item,
    .issue-category {
        padding: 20px;
    }
    
    .troubleshooter-steps {
        padding: 20px 15px;
    }
}