/* SERVICES FULL PAGE STYLING */
.services-full-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    padding-top: 50px; 
    padding-bottom: 80px;
    margin: 0 auto;
}

/* 1. HERO HEADER */
.services-hero {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 40px;
}

.accent-text-service {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.text-gradient-service {
    background: linear-gradient(90deg, #0f172a 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-intro {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.services-header-divider {
    width: 60px;
    height: 3px;
    background: #00d4ff;
    margin: 0 auto;
}

/* 2. SERVICES PILLARS GRID */
.services-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.pillar-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    margin-bottom: 25px;
}

.pillar-card h2 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pillar-features li span {
    color: #00d4ff;
    font-size: 1.1rem;
}

@media(max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
}