/* ============================================
   SERVICES PAGE - Premium UI
   Prefix: svc-
   ============================================ */

/* Section Layout */
.svc-section {
    padding: 100px 0;
    position: relative;
}

.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.svc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.2);
    color: var(--gv-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.svc-section-title {
    font-family: var(--gv-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.svc-section-title span {
    color: var(--gv-primary);
}

.svc-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 750px;
}

.svc-center {
    text-align: center;
}

.svc-center .svc-section-subtitle {
    margin: 0 auto 40px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.svc-hero {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(248, 209, 2, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.svc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.1);
    border: 1px solid rgba(248, 209, 2, 0.25);
    color: var(--gv-primary);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.svc-hero h1 {
    font-family: var(--gv-font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.svc-hero h1 span {
    color: var(--gv-primary);
}

.svc-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.svc-hero-desc strong {
    color: var(--gv-primary);
}

/* CTA Buttons */
.svc-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.svc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-dark) 100%);
    color: #0a1430;
    padding: 16px 36px;
    border-radius: 12px;
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(248, 209, 2, 0.25);
}

.svc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 209, 2, 0.35);
    color: #0a1430;
    text-decoration: none;
}

.svc-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gv-primary);
    padding: 16px 36px;
    border-radius: 12px;
    border: 2px solid rgba(248, 209, 2, 0.4);
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svc-btn-secondary:hover {
    background: rgba(248, 209, 2, 0.08);
    border-color: var(--gv-primary);
    transform: translateY(-2px);
    color: var(--gv-primary);
    text-decoration: none;
}

/* Trust Band */
.svc-trust-band {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.svc-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.svc-trust-stat .num {
    font-family: var(--gv-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gv-primary);
}

.svc-trust-stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.svc-problem {
    background: var(--gv-bg-secondary);
}

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

.svc-problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gv-accent-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-problem-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.svc-problem-card:hover::before {
    opacity: 1;
}

.svc-problem-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-accent-red);
    margin-bottom: 16px;
}

.svc-problem-card h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.svc-problem-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* Quote */
.svc-quote {
    margin-top: 48px;
    padding: 28px 32px;
    background: rgba(248, 209, 2, 0.04);
    border-left: 4px solid var(--gv-primary);
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-style: italic;
}

.svc-quote strong {
    color: var(--gv-primary);
    font-style: normal;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.svc-process {
    background: var(--gv-bg-primary);
}

.svc-process-timeline {
    max-width: 700px;
    margin: 48px auto 0;
    position: relative;
    padding-left: 60px;
}

.svc-process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gv-primary), rgba(248, 209, 2, 0.15));
}

.svc-step {
    position: relative;
    padding: 0 0 48px 32px;
}

.svc-step:last-child {
    padding-bottom: 0;
}

.svc-step-marker {
    position: absolute;
    left: -36px;
    top: 0;
    width: 48px;
    height: 48px;
    background: rgba(248, 209, 2, 0.1);
    border: 2px solid var(--gv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gv-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gv-primary);
    z-index: 1;
}

.svc-step h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.svc-step .svc-step-duration {
    font-size: 0.8rem;
    color: var(--gv-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.svc-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SYSTEMS / SERVICES GRID
   ============================================ */
.svc-systems {
    background: var(--gv-bg-secondary);
}

.svc-systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.svc-system-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.svc-system-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 209, 2, 0.15);
    transform: translateY(-4px);
}

.svc-system-icon {
    width: 56px;
    height: 56px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    margin-bottom: 20px;
}

.svc-system-card h3 {
    font-family: var(--gv-font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.svc-system-card .svc-system-for {
    font-size: 0.8rem;
    color: var(--gv-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.svc-system-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.svc-system-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.svc-system-features li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.svc-system-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gv-primary);
    font-size: 0.65rem;
    top: 9px;
}

.svc-system-cta {
    margin-top: 20px;
}

.svc-system-cta a {
    color: var(--gv-primary);
    font-family: var(--gv-font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.svc-system-cta a:hover {
    color: var(--gv-primary-light);
}

/* ============================================
   SERVICES SCOPE
   ============================================ */
.svc-scope {
    background: var(--gv-bg-primary);
}

.svc-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.svc-scope-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.svc-scope-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 209, 2, 0.15);
    transform: translateY(-2px);
}

.svc-scope-icon {
    width: 48px;
    height: 48px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    margin: 0 auto 16px;
}

.svc-scope-card h4 {
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.svc-scope-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.svc-scope-card a {
    display: inline-block;
    margin-top: 12px;
    color: var(--gv-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.svc-scope-card a:hover {
    color: var(--gv-primary-light);
}

/* ============================================
   CASE STUDIES
   ============================================ */
.svc-proof {
    background: var(--gv-bg-secondary);
}

.svc-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.svc-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.svc-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 209, 2, 0.15);
    transform: translateY(-2px);
}

.svc-case-card h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.svc-case-metrics {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.svc-case-metrics li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.svc-case-metrics li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gv-primary);
    font-size: 0.65rem;
    top: 9px;
}

.svc-case-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 12px;
    padding: 12px 20px;
    margin-top: 12px;
}

.svc-case-badge .num {
    font-family: var(--gv-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gv-primary);
    line-height: 1;
}

.svc-case-badge .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-proof-cta {
    text-align: center;
    margin-top: 40px;
}

.svc-proof-cta a {
    color: var(--gv-primary);
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.svc-proof-cta a:hover {
    color: var(--gv-primary-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.svc-faq {
    background: var(--gv-bg-primary);
}

.svc-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.svc-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.svc-faq-item:hover {
    border-color: rgba(248, 209, 2, 0.15);
}

.svc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.svc-faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.svc-faq-q h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.svc-faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(248, 209, 2, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.svc-faq-item.active .svc-faq-toggle {
    transform: rotate(45deg);
    background: rgba(248, 209, 2, 0.15);
}

.svc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.svc-faq-item.active .svc-faq-a {
    max-height: 300px;
}

.svc-faq-a p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.svc-cta {
    background: var(--gv-bg-secondary);
}

.svc-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.svc-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-cta-highlight {
    font-size: 1.15rem !important;
    color: var(--gv-primary) !important;
    font-style: italic;
    font-weight: 600;
}

.svc-cta-actions {
    margin-top: 32px;
}

.svc-cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 32px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.svc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.svc-trust-item i {
    color: var(--gv-primary);
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .svc-section {
        padding: 72px 0;
    }

    .svc-problem-grid,
    .svc-systems-grid,
    .svc-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-section {
        padding: 56px 0;
    }

    .svc-container {
        padding: 0 16px;
    }

    .svc-hero {
        padding: 48px 0 64px;
    }

    .svc-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .svc-btn-primary,
    .svc-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .svc-trust-band {
        gap: 24px;
    }

    .svc-problem-grid,
    .svc-systems-grid,
    .svc-proof-grid,
    .svc-scope-grid {
        grid-template-columns: 1fr;
    }

    .svc-process-timeline::before {
        display: none;
    }

    .svc-step {
        padding-left: 0;
    }

    .svc-step-marker {
        position: relative;
        left: auto;
        margin-bottom: 16px;
    }

    .svc-process-timeline {
        padding-left: 0;
    }

    .svc-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .svc-section {
        padding: 44px 0;
    }

    .svc-container {
        padding: 0 14px;
    }

    .svc-hero {
        padding: 36px 0 48px;
    }

    .svc-problem-card,
    .svc-system-card,
    .svc-scope-card,
    .svc-case-card {
        padding: 22px;
    }

    .svc-trust-band {
        gap: 16px;
    }

    .svc-trust-stat .num {
        font-size: 1.5rem;
    }
}
