/* Services Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

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

.breadcrumb a:hover {
    opacity: 1;
}

.separator {
    opacity: 0.6;
}

/* Service Navigation */
.service-nav {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.service-nav-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.service-nav-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.service-nav-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section.alt-bg {
    background: var(--light-bg);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-section.alt-bg .feature-item {
    background: var(--white);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-pricing {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-pricing h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Visual Mockups */
.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.mockup-header {
    background: #f5f5f5;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.mockup-content {
    padding: 1.5rem;
}

/* Notion Mockup */
.database-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.8rem;
}

.database-row.header {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.database-row span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Web Mockup */
.web-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.web-hero h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.web-hero p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.mockup-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.web-services {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.web-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.web-service-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.web-service-item span {
    font-size: 0.7rem;
    color: var(--text-dark);
}

/* AI Mockup */
.ai-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.process-step i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.process-step span {
    font-size: 0.7rem;
    color: var(--text-dark);
}

.process-arrow {
    color: var(--text-light);
    font-size: 0.8rem;
}

.ai-result {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 6px;
}

.ai-result h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ai-result p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.ai-result ul {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-left: 1rem;
}

/* Support Mockup */
.support-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: var(--white);
    font-size: 1rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.timeline-content p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.response-time {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

/* Service Flow */
.service-flow {
    background: var(--light-bg);
    padding: 80px 0;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.flow-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    padding-top: 1rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-duration {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .service-nav-items {
        gap: 1rem;
    }

    .service-nav-item {
        padding: 0.8rem 1rem;
        min-width: 100px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 0.8rem;
    }

    .database-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .database-row span:nth-child(3),
    .database-row span:nth-child(4) {
        display: none;
    }

    .web-services {
        flex-direction: column;
        gap: 1rem;
    }

    .ai-process {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

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

    .service-nav {
        padding: 1rem 0;
    }

    .service-nav-items {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .service-section {
        padding: 60px 0;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    .visual-mockup {
        max-width: 300px;
    }

    .mockup-content {
        padding: 1rem;
    }

    .step-content {
        padding: 1rem;
    }
}