 /* =========================================
       1. GLOBAL & HERO STYLES
       ========================================= */
    .service-hero {
        position: relative;
        height: 70vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        background: linear-gradient(rgba(26, 1, 41, 0.60), rgba(26, 1, 41, 0.85)), url('../img/hero-web-design.jpg') no-repeat center center/cover;
    }
    
    .tech-pill {
        display: inline-block;
        padding: 6px 14px;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        margin: 0 6px 8px 0;
        transition: 0.3s;
    }
    .tech-pill:hover {
        border-color: #bf00ff;
        color: white;
    }

    /* =========================================
       2. PACKAGE CARDS
       ========================================= */
    .pkg-detail-card {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.08);
        padding: 35px;
        border-radius: 12px;
        transition: 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .pkg-detail-card:hover {
        background: rgba(255,255,255,0.04);
        border-color: var(--hover-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
    }

    .feature-list-check li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        color: rgba(255,255,255,0.7);
        font-size: 0.95rem;
    }
    .feature-list-check li::before {
        content: '\F26A'; /* Bootstrap check-circle-fill */
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--accent-color);
    }

    /* =========================================
       3. WEB APP / DASHBOARD MOCKUP
       ========================================= */
    .dashboard-mockup {
        background: rgba(20, 0, 40, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 30px;
        backdrop-filter: blur(10px);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: transform 0.5s ease;
        box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    }
    .dashboard-mockup:hover {
        transform: perspective(1000px) rotateY(0) rotateX(0);
        border-color: #00e5ff;
    }

    /* =========================================
       4. BOOKING SYSTEM MOCKUP (New)
       ========================================= */
    .booking-mockup {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(191, 0, 255, 0.3);
        border-radius: 16px;
        padding: 25px;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .time-slot {
        background: rgba(255,255,255,0.05);
        color: #aaa;
        border-radius: 6px;
        padding: 8px;
        text-align: center;
        font-size: 0.85rem;
    }
    .time-slot.active {
        background: rgba(191, 0, 255, 0.2);
        color: #fff;
        border: 1px solid #bf00ff;
        font-weight: bold;
    }

    /* =========================================
       5. API VISUALIZATION
       ========================================= */
    .api-visual-wrapper {
        position: relative; 
        height: 400px; 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .hub-core {
        width: 120px; 
        height: 120px; 
        background: #00ff9d; 
        border-radius: 50%; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        box-shadow: 0 0 60px rgba(0, 255, 157, 0.3); 
        z-index: 5;
        position: relative;
    }
    .satellite-node {
        position: absolute;
        background: #1a0129; 
        border: 1px solid #00ff9d; 
        padding: 12px 15px; 
        border-radius: 12px; 
        color: white; 
        width: 140px; 
        text-align: center;
        z-index: 10;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        font-size: 0.85rem;
        font-weight: 600;
    }
    /* Positioning Satellites */
    .sat-tl { top: 20px; left: 20px; }
    .sat-tr { top: 20px; right: 20px; }
    .sat-bl { bottom: 20px; left: 20px; }
    .sat-br { bottom: 20px; right: 20px; }

    /* =========================================
       6. PROCESS STEPS
       ========================================= */
    .process-step {
        position: relative;
        padding-left: 50px;
        margin-bottom: 50px;
        border-left: 2px solid rgba(191, 0, 255, 0.2);
    }
    .process-step::before {
        content: '';
        position: absolute;
        left: -9px;
        top: 0;
        width: 16px;
        height: 16px;
        background: #1a0129;
        border: 2px solid #bf00ff;
        border-radius: 50%;
        box-shadow: 0 0 10px #bf00ff;
    }