/* ============================================================
   SERVICES LANDING PAGE
============================================================ */

/* Services Hero */
.services-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg), var(--base-bg));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-hero .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(123, 47, 255, 0.12));
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: var(--electric-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.services-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Full Services Grid */
.services-full {
    padding: 5rem 2rem 6rem;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-full-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--cyber-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-full-card:hover::before {
    transform: scaleX(1);
}

.service-full-card:hover {
    border-color: rgba(0, 217, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 217, 255, 0.08);
}

.service-full-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.service-full-icon svg {
    width: 56px;
    height: 56px;
}

.service-full-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-full-summary {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-full-details {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

.service-full-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-full-details li::before {
    content: '\25B8';
    color: var(--electric-blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-full-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--electric-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-full-link:hover {
    color: var(--amber);
}

/* Preview / Coming Soon Services */
.services-preview {
    padding: 5rem 2rem 6rem;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.preview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.preview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.preview-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.preview-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232, 168, 56, 0.4);
    border-radius: 4px;
    color: var(--amber);
    background: rgba(232, 168, 56, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-full {
        padding: 3rem 1.5rem 4rem;
    }

    .service-full-card {
        padding: 2rem 1.5rem;
    }
}
