/* ===================================
   Aaron Tech Consultants - Service Page Styles
   Template for all individual service pages
   =================================== */

/* Service Hero (shorter than homepage) */
.service-hero {
    background: linear-gradient(135deg, #0d3d4d 0%, #1a5f7a 50%, #2d8bba 100%);
    padding: 140px 0 60px;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.service-hero .container { position: relative; z-index: 1; }

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 8px; }

.service-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border: none;
    color: #ffffff;
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured h4,
.pricing-card.featured p,
.pricing-card.featured li { color: #ffffff; }

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 10px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--cta-amber);
    color: #1a1a2e;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--accent-blue); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
}

.faq-question:hover { color: var(--accent-blue); }

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* Related Services (cross-sell module) */
.related-services {
    background: var(--bg-section);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero { padding: 120px 0 40px; }
    .service-hero h1 { font-size: 2rem; }
    .pricing-card.featured { transform: none; }
    .pricing-grid { grid-template-columns: 1fr; }
}
