/* ==========================================
   SERVICE DETAIL PAGES CSS
   ========================================== */

/* ── Breadcrumb ───────────────────────────── */
.svc-breadcrumb {
    padding: 120px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.svc-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.svc-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.svc-breadcrumb a:hover {
    color: var(--accent-blue);
}

.svc-breadcrumb span {
    color: var(--text-primary);
    font-weight: 500;
}

/* ── Detail Hero ──────────────────────────── */
.svc-detail-hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.svc-detail-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.svc-detail-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.svc-detail-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.svc-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.svc-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-detail-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.svc-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.svc-detail-tags span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 4px;
}

.svc-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: var(--accent-blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59,130,246,0.25);
}

.svc-detail-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59,130,246,0.35);
}

/* Right Stats Card */
.svc-hero-stat-card {
    background: rgba(10,20,40,0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.svc-hero-stat-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.svc-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 32px;
}

.svc-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.svc-stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    min-width: 80px;
}

.svc-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.svc-stat-div {
    height: 1px;
    background: rgba(255,255,255,0.05);
}

/* ── Generic Section ──────────────────────── */
.svc-detail-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.svc-section-dark {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.svc-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.svc-section-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.svc-section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* ── What We Do Grid ──────────────────────── */
.svc-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-what-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.svc-what-card:hover {
    background: rgba(59,130,246,0.04);
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-4px);
}

.svc-what-icon {
    width: 48px;
    height: 48px;
    background: rgba(59,130,246,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.svc-what-card h3 {
    font-family: var(--font-subheading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.svc-what-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── What We Have Done (Outcomes) ─────────── */
.svc-outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-outcome-item {
    display: flex;
    gap: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.svc-outcome-item:hover {
    background: rgba(59,130,246,0.03);
    border-color: rgba(59,130,246,0.15);
}

.svc-outcome-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(59,130,246,0.2);
    line-height: 1;
}

.svc-outcome-content h3 {
    font-family: var(--font-subheading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.svc-outcome-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-outcome-tags span {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(59,130,246,0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ── How We Do It (Timeline) ──────────────── */
.svc-how-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.svc-how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-how-step-num {
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.svc-how-connector {
    flex: 0 0 40px;
    height: 2px;
    background: rgba(59,130,246,0.2);
    margin-top: 24px;
}

.svc-how-step-content h3 {
    font-family: var(--font-subheading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.svc-how-step-content p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Bottom ───────────────────────────── */
.svc-detail-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10,20,40,0.8) 0%, rgba(8,12,20,1) 100%);
    text-align: center;
    border-top: 1px solid rgba(59,130,246,0.1);
}

.svc-detail-cta h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.svc-detail-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ── Other Services ───────────────────────── */
.svc-other-services {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}

.svc-other-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.svc-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-other-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.svc-other-card:hover {
    background: rgba(59,130,246,0.05);
    border-color: rgba(59,130,246,0.2);
}

.svc-other-card span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: rgba(59,130,246,0.5);
}

.svc-other-card h4 {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
    margin: 0 16px;
}

.svc-other-card svg {
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.svc-other-card:hover svg {
    color: var(--accent-blue);
    transform: translateX(4px);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
    .svc-detail-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .svc-what-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-other-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .svc-breadcrumb { padding-top: 100px; }
    .svc-detail-title { font-size: 2.2rem; }
    .svc-what-grid { grid-template-columns: 1fr; }
    .svc-outcome-item { flex-direction: column; gap: 16px; padding: 24px; }
    .svc-how-timeline { flex-direction: column; }
    .svc-how-connector { width: 2px; height: 30px; margin: 10px 0 10px 23px; flex: none; }
}
