/* ======================================
   QUICK LINKS - HORIZONTAL LIST DESIGN
   Design 2 from test page
   ====================================== */

/* Container */
.quick-links-section .container {
    max-width: 700px;
}

/* List Layout */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Individual Item */
.quick-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(5px);
}

/* Icon */
.ql-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.quick-link-item:hover .ql-icon {
    transform: scale(1.08);
}

/* Info */
.ql-info {
    flex: 1;
    min-width: 0;
}

.ql-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #fff;
}

.ql-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Arrow */
.ql-arrow {
    color: rgba(139, 92, 246, 0.6);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.quick-link-item:hover .ql-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .quick-links-section .container {
        max-width: 100%;
    }

    .quick-link-item {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .ql-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ql-info h3 {
        font-size: 0.9rem;
    }

    .ql-info p {
        font-size: 0.75rem;
    }

    .ql-arrow {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .quick-link-item {
        padding: 0.75rem;
    }

    .ql-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}