/* ========================================
   BLOOMIFY SOURCING - SERVICES PAGE
   ======================================== */

/* ---- PAGE HERO ---- */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 1rem 0;
    line-height: 1.15;
}

.page-hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* ---- SERVICES DETAILED ---- */
.services-detailed {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.service-detail-card.reverse .service-detail-content {
    order: 2;
}

.service-detail-card.reverse .service-detail-visual {
    order: 1;
}

/* ---- SERVICE DETAIL CONTENT ---- */
.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.service-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-purple);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.service-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.service-detail-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* ---- INCLUDES GRID ---- */
.service-detail-includes {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.service-detail-includes h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.include-item i {
    color: var(--color-cyan);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ---- SERVICE CTA ---- */
.service-detail-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- VISUAL CARD ---- */
.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.visual-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.visual-icon {
    width: 52px;
    height: 52px;
    background: var(--color-purple-dim);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-purple);
    margin-bottom: 1.2rem;
}

.visual-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.visual-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.visual-card ul li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.visual-card ul li:last-child {
    border-bottom: none;
}

.visual-card ul li i {
    color: var(--color-purple);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.v-num {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.v-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    border-color: rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.08),
        rgba(0, 212, 255, 0.04));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
}

.price-currency {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--color-cyan);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}

.pricing-note i {
    color: var(--color-purple);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question i {
    color: var(--color-purple);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    color: var(--color-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-content {
        order: 1;
    }

    .service-detail-card.reverse .service-detail-visual {
        order: 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-detail-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 2.5rem 0;
    }
}
/* ============================================================
   SERVICES QUICK NAV
   ============================================================ */
.services-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-quick-nav a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.services-quick-nav a:hover {
    background: rgba(167, 139, 250, 0.18);
    border-color: rgba(167, 139, 250, 0.5);
    color: #a78bfa;
    transform: translateY(-1px);
}
