/* ==========================================
   SERVICES PAGE SPECIFIC STYLES
   Aethertech Dynamics
   ========================================== */

/* Services Main Layout */
.services-section {
    padding: 90px 0;
    background-color: var(--light-bg);
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.service-item:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    flex: 1;
    padding: 48px;
}

.service-content h2 {
    color: var(--primary-color);
    font-size: 1.85rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 2px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.02rem;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.service-features li i {
    color: var(--tertiary-color);
    background: rgba(93, 156, 89, 0.12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Methodology Process Section */
.process-section {
    padding: 90px 0;
    background-color: var(--card-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-step {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    background: var(--card-bg);
    box-shadow: var(--hover-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(232, 90, 79, 0.3);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 44, 66, 0.02);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-item, .service-item:nth-child(even) {
        flex-direction: column;
    }
    .service-image {
        min-height: 260px;
        width: 100%;
    }
    .service-content {
        padding: 32px 24px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
}