/* Custom Styles for Services Page */

#performance-marketing .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-packages,
.industries-section,
.process-section,
.why-choose-us-section {
    width: 100%;
}

.service-packages h3,
.industries-section h3,
.process-section h3,
.why-choose-us-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.packages-grid,
.benefits-grid {
    display: grid;
    gap: 20px;
}

.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.package-card,
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card h4,
.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Industries Section */
.industries-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industries-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-list li i {
    color: var(--accent-color);
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #ffffff;
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 6px;
}

/* Why Choose Us Section */
.benefit-card.alt-style {
    background: transparent !important;
    border: 2px dashed rgba(255, 165, 0, 0.5) !important;
    box-shadow: none !important;
}

.benefit-card.alt-style h4 {
    color: var(--accent-color) !important;
}


@media (max-width: 768px) {
    #performance-marketing .container {
        gap: 40px;
    }

    .service-packages h3,
    .industries-section h3,
    .process-section h3,
    .why-choose-us-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .packages-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-timeline::after {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 0;
    }
}