/* ============================================
          Atlantic Digital - Design Premium Sophistiqué
           ============================================ */

       :root {
            --primary1: #0f172a;
           --primary-light1: #1e293b;
            --primary-dark1: #020617;
            --accent1: #3b82f6;
            --accent-hover1: #2563eb;
            --accent-light1: #60a5fa;
            --gradient-primary1: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            --gradient-accent1: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 100%);
            --gradient-hero1: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0369a1 100%);
            --success1: #10b981;
            --warning1: #f59e0b;
            --danger1: #ef4444; 
            --bg-light1: #f8fafb;
            --bg-white1: #ffffff;
            --bg-glass1: rgba(255, 255, 255, 0.1);
            --text-main1: #1e293b;
            --text-muted1: #64748b;
            --text-light1: #94a3b8;
            --text-white1: #ffffff;
            --border1: #e2e8f0;
            --border-light1: #f1f5f9;
            --shadow-sm1: 0 1px 2px 0 rgb(0 0 0 / 0.05);
           --shadow-md1: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg1: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl1: 0 20px 25px -5px rgb(0 0 0 / 0.1);
           --shadow-2xl1: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --shadow-glow1: 0 0 40px rgba(45, 212, 191, 0.3);
           --radius1: 8px;
            --radius-lg1: 16px;
           --radius-xl1: 24px;
            --radius-full1: 9999px;
            --container-width1: 1280px;
            --font-family1: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition-base1: all 0.3s ease;
        }

      
        /* === SERVICES SECTION === */
        .services {
           padding: 100px 0;
            background: var(--bg-white1);
       }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title .badge {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 8px 20px;
            background: rgba(45, 212, 191, 0.1);
            border: 1px solid var(--accent-light1);
            border-radius: var(--radius-full1);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent1);
        }

        .section-title h2 {
            margin-bottom: 1rem;
        }

        .section-title p {
           font-size: 1.125rem;
            max-width: 600px;
           margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
           gap: 2.5rem;
        }

       .service-card {
           background: var(--bg-white1);
           border: 1px solid var(--border1);
            border-radius: var(--radius-xl1);
          overflow: hidden;
            transition: var(--transition-base1);
           position: relative;
        }

        .servicecard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent1);
            transform: scaleX(0);
            transition: var(--transition-base1);
        }

        .service-card:hover {
            box-shadow: var(--shadow-xl1);
            transform: translateY(-10px);
            bordercolor: transparent;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-header {
            background: var(--bg-light1);
            padding: 2.5rem;
            text-align: center;
            border-bottom: 1px solid var(--border-light1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            color: var(--accent1);
            border-radius: var(--radius-lg1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 1rem;
            transition: var(--transition-base1);
        }

        .service-card:hover .service-icon {
            background: var(--gradient-accent1);
            color: white;
            transform: scale(1.1);
        }

        .service-header h3 {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
        }

        .service-header .label {
            display: inlineblock;
            padding: 4px 12px;
            background: var(--accent1);
            color: white;
            border-radius: var(--radius-full1);
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.75rem;
        }

        .service-body {
            padding: 2rem;
        }

        .service-body p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-features {
           list-style: none;
            margin-bottom: 2rem;
        }

       .service-features li {
           display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: '✓';
            color: var(--accent1);
            font-weight: 800;
           font-size: 1.25rem;
            flex-shrink: 0;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent1);
           font-weight: 600;
            font-size: 0.95rem;
        }

        .service-link:hover { gap: 15px; }
         /* === BUTTONS === */
    .service-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid #3b82f6;
        color: #3b82f6;
    }

    .btn-outline:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    /* === PROCESS SECTION === */
    .process {
        padding: 80px 0;
        background: #f8fafb;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .process-step {
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 auto 1.5rem;
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    }

    .process-step h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: #0f172a;
    }

    .process-step p {
        font-size: 0.95rem;
        color: #64748b;
    }

    /* === CTA SECTION === */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }

    .cta-section .container {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: rgba(255,255,255,0.8);
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cta-buttons .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .cta-buttons .btn-white {
        background: white;
        color: #0f172a;
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }

    .cta-buttons .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
        .service-card {
            margin-bottom: 1rem;
        }
        
        .service-buttons {
            flex-direction: column;
        }
        
        .service-buttons .btn {
            width: 100%;
        }
    }
    
    /* Ensure all buttons are clickable */
    .service-buttons .btn {
        position: relative;
        z-index: 1;
        pointer-events: auto !important;
    }
    
    /* Ensure service-card doesn't block clicks */
    .service-card {
        pointer-events: none;
    }
    
    .service-card > * {
        pointer-events: auto;
    }
