/* Additional styles for other pages */

.page-header {
    padding: 3rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.services-section {
    padding: 3rem 1rem;
}

.services-section:nth-child(even) {
    background-color: rgba(30, 41, 59, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.section-header i {
    font-size: 2rem;
    color: var(--primary-light);
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
}

.service-price {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
}

/* Service Areas - FLEXBOX */
.service-areas {
    padding: 3rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.area-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    width: 400px;
    flex: 0 0 400px;
}

.area-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.area-card li i {
    color: var(--primary-light);
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

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

/* Process Steps - FLEXBOX */
.process-section {
    padding: 3rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    width: 200px;
    flex: 0 0 200px;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section - FLEXBOX */
.faq-section {
    padding: 3rem 1rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    width: 450px;
    flex: 0 0 450px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.contact-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item-header i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.contact-item h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    color: var(--primary-light);
    position: absolute;
    left: 0;
}

/* Packages - FLEXBOX */
.packages-section {
    padding: 3rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background-color: var(--surface);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 300px;
    flex: 0 0 300px;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.package-card.featured {
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-header p {
    color: var(--text-secondary);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.package-features i {
    color: var(--primary-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Process Grid 5 - FLEXBOX */
.process-grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-grid-5 .process-step {
    width: 180px;
    flex: 0 0 180px;
}

/* Stats Section - FLEXBOX */
.stats-section {
    padding: 3rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    width: 180px;
    flex: 0 0 180px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Projects - FLEXBOX */
.projects-section {
    padding: 3rem 1rem;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 350px;
    flex: 0 0 350px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.project-category.monitoring {
    background-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.project-category.service {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-category.network {
    background-color: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: var(--surface-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    border: 1px solid var(--border);
}

.project-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.project-rating span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonials - FLEXBOX */
.testimonials-section {
    padding: 3rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    width: 300px;
    flex: 0 0 300px;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .areas-grid {
        flex-direction: column;
        align-items: center;
    }

    .area-card {
        width: 100%;
        max-width: 400px;
        flex: 1 1 100%;
    }

    .faq-grid {
        flex-direction: column;
        align-items: center;
    }

    .faq-item {
        width: 100%;
        max-width: 450px;
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .stats-grid {
        justify-content: space-around;
    }

    .stat-item {
        width: 150px;
        flex: 0 0 150px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .projects-grid {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        width: 100%;
        max-width: 400px;
        flex: 1 1 100%;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        max-width: 350px;
        flex: 1 1 100%;
    }

    .process-grid,
    .process-grid-5 {
        justify-content: space-around;
    }

    .process-step {
        width: 150px;
        flex: 0 0 150px;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 400px;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 200px;
        flex: 1 1 100%;
    }

    .process-grid,
    .process-grid-5 {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 200px;
        flex: 1 1 100%;
    }

    .project-features {
        flex-direction: column;
    }

    .feature-tag {
        text-align: center;
    }

    .service-card {
        min-height: 200px;
    }
}