/* IT Services (post 626) consolidated styles.
 * Extracted from inline <style> blocks during Phase 1C.
 */

/* =================================================================
   Block 1 - extracted from post 626 (services)
   ================================================================= */
/* --- Traxx IT Modern Brand Variables --- */
        :root {
            --traxx-bg: #ffffff; 
            --traxx-card-bg: #f8f9fa; 
            --traxx-dark: #0f172a; 
            --traxx-text: #475569; 
            
            --traxx-cyan: #00d2ff; 
            --traxx-blue-dark: #0284c7; 
            --traxx-gradient: linear-gradient(90deg, var(--traxx-blue-dark) 0%, var(--traxx-cyan) 100%);
            
            --font-main: 'Inter', system-ui, -apple-system, sans-serif;
            --font-code: 'Fira Code', monospace; 
        }

        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--traxx-text);
            margin: 0;
            background-color: var(--traxx-bg);
            -webkit-font-smoothing: antialiased;
        }

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

        h1, h2, h3 {
            font-family: var(--font-main);
            font-weight: 800;
            color: var(--traxx-dark);
            margin-top: 0;
        }
        
        /* --- Banner Section --- */
        .banner {
            background-color: var(--traxx-dark);
            background-image: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.15) 0%, transparent 40%),
                              radial-gradient(circle at 90% 80%, rgba(0, 210, 255, 0.1) 0%, transparent 40%);
            color: #ffffff;
            text-align: center;
            height: 400px; 
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-bottom: 4px solid;
            border-image: var(--traxx-gradient) 1;
        }

        .banner h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .banner p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 400;
            max-width: 750px;
            margin: 0 auto;
            color: #cbd5e1;
        }

        /* --- Services Section --- */
        .services-section {
            padding: 100px 20px;
            background-color: var(--traxx-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-inline: auto;
        }

        .traxx-preheading {
            font-family: var(--font-code);
            color: var(--traxx-blue-dark);
            font-size: 14px;
            font-weight: 600;
            text-transform: lowercase;
            letter-spacing: 1px;
            margin: 0 0 10px 0;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 42px);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .traxx-divider {
            width: 80px;
            height: 4px;
            background: var(--traxx-gradient);
            margin: 0 auto 25px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--traxx-text);
            margin: 0;
        }
        
        /* --- Flexbox Services Grid --- */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; 
            gap: 30px;
        }

        .service-card {
            background: var(--traxx-card-bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
            
            flex: 1 1 calc(33.333% - 30px);
            min-width: 300px;
            max-width: 380px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--traxx-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            background: #ffffff;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .service-icon i {
            font-size: 38px;
            background: var(--traxx-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon i {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .service-card p {
            margin-bottom: 25px;
            flex-grow: 1;
            font-size: 1rem;
        }
        
        .service-tag {
            font-family: var(--font-code);
            font-size: 12px;
            color: var(--traxx-blue-dark);
            font-weight: 600;
            margin-top: auto;
            display: block;
        }

        /* --- CTA Section --- */
        .cta-section {
            background-color: var(--traxx-dark);
            color: var(--traxx-bg);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            /* Added negative margin to pull the footer up flush */
            margin-bottom: -60px; 
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }
        
        .cta-section h2 {
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 40px auto;
            font-size: 1.15rem;
            color: #cbd5e1;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            background: var(--traxx-gradient);
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 4px; 
            text-decoration: none;
            font-weight: 700;
            font-family: var(--font-code);
            font-size: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            position: relative;
            z-index: 2;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
        }

        /* --- Mobile Optimization --- */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 15px; 
            }
            
            .service-card {
                padding: 25px 20px; 
                min-width: 100%; 
                max-width: 100%;
            }
            
            .service-icon {
                margin-bottom: 15px;
            }
            
            .service-icon i {
                font-size: 28px; 
            }
            
            .service-card h3 {
                font-size: 1.25rem; 
                margin-bottom: 10px;
            }
            
            .service-card p {
                font-size: 0.95rem; 
                margin-bottom: 15px;
            }
        }
