/* Services Page Styles */

/* Remove existing includes/services.php top padding since we have a dedicated hero */
.services-hero-section + #services {
    padding-top: 0;
}
.services-hero-section + #services .services-header {
    display: none; /* Hide the duplicate "Systems I Build" title since we have a hero */
}

/* Promo Banner */
.premium-promo-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

.promo-glass-card {
    background: linear-gradient(135deg, rgba(20, 20, 24, 0.8), rgba(12, 12, 16, 0.95));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 79, 0, 0.2);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 0 50px rgba(255, 79, 0, 0.08), inset 0 0 20px rgba(255, 79, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.promo-glass-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 40%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 79, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 79, 0, 0.15);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 79, 0, 0.3);
}

.promo-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    color: #fff;
}

.promo-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 1.5rem;
}

.promo-features {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promo-action {
    text-align: center;
    min-width: 200px;
    background: rgba(0,0,0,0.3);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.promo-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
}

.promo-price span {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

.vglow-btn {
    width: 100%;
    animation: svc-pulse 2.5s infinite;
}

/* Accordion Services Section */
.services-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion-item {
    background: rgba(15, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.accordion-item:hover {
    border-color: rgba(255, 79, 0, 0.3);
    background: rgba(20, 20, 24, 0.8);
}

.accordion-item.active {
    border-color: rgba(255, 79, 0, 0.5);
    background: rgba(20, 20, 24, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(255, 79, 0, 0.1);
}

.orange-card {
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.orange-card h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.orange-card:hover {
    background: var(--primary-hover);
}

.acc-toggle-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.8rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.acc-toggle-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.accordion-item.active .acc-toggle-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none; /* Handled by GSAP or basic CSS toggle */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-inner-wrapper {
    padding: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.acc-inner-wrapper p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.service-sub-point {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.service-sub-point h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.service-sub-point p {
    font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .promo-glass-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    .promo-features {
        justify-content: center;
    }
    .promo-action {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .accordion-trigger {
        padding: 1.25rem;
    }
    .acc-title-flex {
        gap: 1rem;
    }
    .acc-icon {
        width: 40px;
        height: 40px;
    }
    .acc-icon svg {
        width: 20px;
    }
    .accordion-trigger h3 {
        font-size: 1.15rem;
    }
    .acc-inner-wrapper {
        padding: 1.25rem;
    }
    .service-sub-point {
        padding: 1.25rem;
    }
}
