/* =====================================================
   SERVICES PAGE STYLES - GreyBox LLC
   Consistent with homepage design system
   ===================================================== */

:root {
    --neo-bg: #0a0a0a;
    --neo-surface: #101114;
    --neo-text: #eaeaea;
    --neo-muted: #b9bcc6;
    --neo-orange: #fc7a10;
    --neo-blue: #4fc3f7;
    --neo-glow-o: rgba(252,122,16,.35);
    --neo-glow-b: rgba(79,195,247,.35);
    --neo-grid: rgba(255,255,255,.055);
}

/* ===================== PAGE WRAPPER ===================== */
.services-page {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    background-color: var(--neo-bg);
    overflow: hidden;
}

/* ===================== HERO SECTION ===================== */
.services-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: 0;
}

.services-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252,122,16,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79,195,247,0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-eyebrow .icon-img {
    width: 18px;
    height: 18px;
}

.services-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neo-text);
    margin-bottom: 24px;
}

.services-hero .hero-title .highlight {
    color: var(--neo-orange);
}

.services-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neo-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-hero .hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero .feature-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services-hero .feature-item:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-5px);
}

.services-hero .feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.services-hero .feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================== SERVICES OVERVIEW ===================== */
.services-overview {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.services-overview .sec-title {
    text-align: center;
    margin-bottom: 80px;
}

.services-overview .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.services-overview .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-overview .service-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.services-overview .service-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.services-overview .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(252,122,16,0.1);
    line-height: 1;
}

.services-overview .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-overview .card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 16px;
}

.services-overview .card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neo-muted);
    margin-bottom: 20px;
}

.services-overview .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.services-overview .card-features li {
    font-size: 14px;
    color: var(--neo-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.services-overview .card-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neo-orange);
    font-weight: 700;
}

.services-overview .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-overview .card-link:hover {
    gap: 12px;
    color: #ff8c2e;
}

/* ===================== SERVICE DETAIL SECTIONS ===================== */
.service-detail {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.service-detail.alt {
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

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

.service-detail .service-grid.reverse {
    direction: rtl;
}

.service-detail .service-grid.reverse > * {
    direction: ltr;
}

.service-detail .service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.service-detail .service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.service-detail .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(252,122,16,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.service-detail .badge-icon {
    font-size: 18px;
}

.service-detail .service-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--neo-orange);
    padding: 8px 16px;
    background: rgba(252,122,16,0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.service-detail .service-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.service-detail .service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 40px;
}

.service-detail .service-features h3,
.service-detail .service-outcomes h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.service-detail .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.service-detail .features-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-detail .features-list li:last-child {
    border-bottom: none;
}

.service-detail .check-icon {
    color: var(--neo-orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail .features-list strong {
    color: var(--neo-text);
}

.service-detail .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-detail .outcome-card {
    padding: 30px;
    background: rgba(252,122,16,0.05);
    border: 2px solid rgba(252,122,16,0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail .outcome-card:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.4);
    transform: scale(1.05);
}

.service-detail .outcome-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 8px;
}

.service-detail .outcome-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--neo-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail .service-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-detail .service-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--neo-orange);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.service-detail .service-btn:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.service-detail .cta-note {
    font-size: 14px;
    color: var(--neo-muted);
}

/* ===================== CTA SECTION ===================== */
.cta-section-two {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
    overflow: hidden;
}

.cta-section-two .anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.cta-section-two .anim-icons .image-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0.3;
}

.cta-section-two .anim-icons .image-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    opacity: 0.2;
}

.cta-section-two .outer-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section-two .sec-title {
    margin-bottom: 40px;
}

.cta-section-two .title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

.cta-section-two .btn-box {
    margin-top: 40px;
}

.cta-section-two .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--neo-orange);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.cta-section-two .btn-link:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.cta-section-two .btn-link .icon-img {
    width: 20px;
    height: 20px;
}

/* ===================== UTILITY CLASSES ===================== */
.color1 {
    color: var(--neo-orange);
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
    .services-hero .hero-title {
        font-size: 52px;
    }
    
    .service-detail .service-grid {
        gap: 60px;
    }
    
    .services-overview .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .services-hero {
        padding: 140px 0 100px;
    }
    
    .services-hero .hero-title {
        font-size: 42px;
    }
    
    .services-hero .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-detail .service-grid,
    .service-detail .service-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }
    
    .service-detail .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail .service-title {
        font-size: 36px;
    }
    
    .services-overview .title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .services-hero .hero-title {
        font-size: 32px;
    }
    
    .services-hero .hero-description {
        font-size: 16px;
    }
    
    .services-hero .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 50px;
    }
    
    .services-overview,
    .service-detail,
    .cta-section-two {
        padding: 80px 0;
    }
    
    .services-overview .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview .title,
    .service-detail .service-title,
    .cta-section-two .title {
        font-size: 32px;
    }
    
    .service-detail .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail .outcome-value {
        font-size: 36px;
    }
    
    .service-detail .service-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-section-two .btn-link {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .services-hero .hero-title {
        font-size: 28px;
    }
    
    .services-overview .title,
    .service-detail .service-title,
    .cta-section-two .title {
        font-size: 26px;
    }
    
    .hero-eyebrow {
        font-size: 12px;
    }
    
    .services-overview .card-icon,
    .services-hero .feature-icon {
        font-size: 32px;
    }
}