/* =============================================================
   DEMO.CSS - Demo Section
   ============================================================= */

.demo-apps {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 6rem 2rem;
}

/* ============== DEMO OPTIONS GRID ============== */

.demo-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.demo-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f5ff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.demo-option:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.25);
}

.demo-option:hover::before {
    transform: scaleX(1);
}

/* ============== DEMO HEADER ============== */

.demo-option-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.demo-option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00f5ff, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-option-icon i {
    font-size: 2rem;
    color: #0a0a0a;
}

.demo-option h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

/* ============== DEMO DESCRIPTION ============== */

.demo-option-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ============== DEMO ACCESS ============== */

.demo-access-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-access-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-access-label i {
    color: var(--cyan);
}

.demo-access-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid transparent;
}

.demo-request-btn i {
    font-size: 1.25rem;
}

/* Telegram is gone; only WhatsApp (brand green) and Email (soft neutral)
   remain, each with its own recognisable, non-"terminal-neon" look. */
.demo-request-btn--whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.demo-request-btn--whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.demo-request-btn--email {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.demo-request-btn--email:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* ============== DEMO NOTE ============== */

.demo-note-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
}

.demo-note-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.demo-note-text i {
    color: var(--cyan);
    margin-right: 0.5rem;
}

.demo-note-text strong {
    color: #fff;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 768px) {
    .demo-apps {
        padding: 4rem 1.5rem;
    }
    .demo-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .demo-option {
        padding: 2rem;
    }
    .demo-option-header {
        flex-direction: column;
        text-align: center;
    }
    .demo-option h3 {
        font-size: 1.25rem;
    }
    .demo-option-desc {
        font-size: 0.95rem;
    }
}