/* ============================================================
   3D Technology Services — Service Detail Pages
   Shared styling for individual service sub-pages.
   ============================================================ */

/* ── Service Hero ── */
.service-hero {
    padding: 180px 24px 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-bg-glow);
    z-index: 0;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-hero .section-tag {
    margin-bottom: 2rem;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.service-hero h1 .highlight {
    color: var(--gold-primary);
}

.service-hero .hero-description {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
}

/* ── Service Stats Bar ── */
.service-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-dim);
    flex-wrap: wrap;
}

.service-stat {
    text-align: left;
}

.service-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
}

.service-stat .stat-label {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.65rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* ── Service Overview Section ── */
.service-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-overview h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-overview h2 .highlight {
    color: var(--gold-primary);
}

.service-overview p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ── Capabilities Grid ── */
.capabilities-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.capabilities-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.capabilities-section .section-header h2 .highlight {
    color: var(--gold-primary);
}

.capabilities-section .section-header p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.capability-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.4s ease;
}

.capability-card:hover::before {
    width: 100%;
}

.capability-card:hover {
    border-color: var(--border-accent);
    background: rgba(13, 148, 136, 0.02);
}

.capability-card .cap-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gold-primary);
}

.capability-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.capability-card p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ── Technology Partners ── */
.service-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    border-top: 1px solid var(--border-dim);
}

.service-partners h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ── Service CTA ── */
.service-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}

.service-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-cta h2 .highlight {
    color: var(--gold-primary);
}

.service-cta p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Feature List ── */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(26, 26, 46, 0.04);
}

.feature-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.5rem;
    top: 16px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .service-hero {
        padding: 140px 20px 60px;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .service-stats {
        gap: 2rem;
    }

    .service-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}